| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 144725 | 马俊潇 | 08比较三个数的大小 | C++ | Wrong Answer | 0 MS | 264 KB | 236 | 2026-01-24 15:56:04 |
#include<iostream> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c; if(a>b){ d=a; a=b; b=d; if(b>c){ cout<<b;}else{ cout<<c;}}else{ d=b; b=a; a=d;} return 0;}
------Input------
69 90 74
------Answer-----
90
------Your output-----