| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154160 | 鸡哥 | 08比较三个数的大小 | C++ | Wrong Answer | 1 MS | 268 KB | 223 | 2026-05-24 15:52:20 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; if(a > b > c){ cout<<a; }else{ if(a < b <c){ cout<<c; }else{ if(c > a > b) cout<<b; } } return 0; }
------Input------
69 90 74
------Answer-----
90
------Your output-----
74