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