提交时间:2019-09-21 12:59:34

运行 ID: 603

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