文档分类
#include<stdio.h> int main() {
int a,b,c,m;
scanf("%d%d%d",&a,&b,&c); if (a>b) m=a; else m=b; if (m<c) m=c; printf("%d",m); return 0; }