| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 155088 | 熊泊彧 | 08比较三个数大小II | C++ | Wrong Answer | 1 MS | 268 KB | 234 | 2026-05-31 14:17:19 |
#include<bits/stdc++.h> using namespace std; int main (){ int a,b,c; cin>>a>>b>>c; if(a<c){ if(a<b){ cout<<a; }else{ cout<<c; } }else{ if(b<c){ cout<<b; }else{ cout<<c; } } return 0; }
------Input------
73 36 93
------Answer-----
36
------Your output-----
93