Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
946 沈文佳 求三个数的最大数 C++ Accepted 100 0 MS 252 KB 147 2019-09-23 21:30:08

Tests(9/9):


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


Judgement Protocol: