Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
46011 | zhangyanshuo | 最大数输出 | C++ | 通过 | 0 MS | 240 KB | 239 | 2024-04-22 09:38:09 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>b>c) { cout<<a; return 0; } else if(b>a>c) { cout<<b; return 0; } else { cout<<c; return 0; } return 0; }