| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143344 | 黄芃硕 | 08比较三个数的大小 | C++ | Accepted | 0 MS | 272 KB | 235 | 2026-01-12 19:09:39 |
#include<iostream> #include<cstring> using namespace std; int main() { int a,b,c,max; cin>>a>>b>>c; max=0; if(a>max) { max=a; } if(b>max) { max=b; } if(c>max) { max=c; } cout<<max; return 0; }