Run ID Author Problem Lang Verdict Time Memory Code Length Submit Time
38824 奚晨瑞 最大数输出 C++ Accepted 0 MS 244 KB 228 2024-01-28 17:07:13

Tests(1/1):


#include<iostream> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; if(a>b){ if(a>c){ cout<<a; } else{ cout<<c; } } else{ if(b>c){ cout<<b; } else{ cout<<c; } } }


Judgement Protocol: