| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144796 | 杨润东 | 比较三个数大小II | C++ | Wrong Answer | 0 MS | 272 KB | 252 | 2026-01-24 18:49:51 |
#include<iostream> #include<cstdio> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if (a>b && a>c){ cout<<"max="<<a; } else if(b>a && b>c){ cout<<"max="<<b; } else if(c>a&&c>b){ cout<<"max="<<c; } return 0; }
------Input------
346 423 123
------Answer-----
123 346 423
------Your output-----
max=423