Run ID:117800

提交时间:2025-04-20 12:33:03

#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,d,e; cin>>a>>b>>c; if(a>=b){ d=a; } else{ d=b; } if(d>=c){ e=d; } else{ e=c; } cout<<"max="<<e; return 0; }