Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
1510 老师 求三个数的最大数 C++ Accepted 100 0 MS 256 KB 150 2019-10-12 19:27:36

Tests(9/9):


#include<iostream> int main(){ int a,b,c,max; scanf("%d %d %d",&a,&b,&c); max=a>b?a:b; max=max>c?max:c; printf("%d",max); return 0; }


Judgement Protocol: