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