Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
1153 张弛 求三个数的最大数 C++ 通过 100 0 MS 260 KB 394 2019-10-04 10:21:12

Tests(9/9):


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


测评信息: