登录之后查看代码,点此登录账号
#include <stdio.h> int main(){ int a,b,c,max; scanf("%d%d%d",&a,&b,&c); max = a>b?a:b; printf("%d",c>max?c:max); return 0; }