Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
1462 | 张宸瑜 | 08比较三个数的大小 | C++ | Wrong Answer | 0 MS | 264 KB | 359 | 2023-09-30 17:47:17 |
# include<iostream> # include<cstdio> #include<iomanip> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a>=b){ if(a>=c){ cout<<a; } else{ cout<<c; } } else{ if(b>=c){ cout<<b; } cout<<c; } return 0; }
------Input------
44 66 54
------Answer-----
66
------Your output-----
6654