Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
155083 熊泊彧 08比较三个数大小II C++ Wrong Answer 1 MS 272 KB 236 2026-05-31 14:15:44

Tests(2/10):


Code:

#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; }


Run Info:

------Input------
73 36 93
------Answer-----
36
------Your output-----
93