题解 | #实践出真知#
最高分数
http://www.nowcoder.com/practice/52c18a3b49a54fc98107fbdde1415f90
#include <bits/stdc++.h>
using namespace std;
int main()
{
int max=-1;
int sc=0;
for(int i=0;i<3;i++){
scanf("%d",&sc);
if(sc>max) max=sc;
}
printf("%d\n",max);
return 0;
}
