| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 31515 | 闻航 | 最大数输出 | C++ | Accepted | 0 MS | 244 KB | 328 | 2023-11-19 14:15:46 |
#include<iostream> 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; } else { cout<<c; } } return 0; }