参考代码#include int main(void) { int a,b,c;scanf("%d %d %d",&a,&b,&c);// 输入3个数int max = a;//默认最大值为a//选出a,b中的最大值if(maxmax = b;//将前两个中最大值与c比较,得出真正的最大值if(max < c)max = c;printf("%d",max);//输出最大值return 0;}