求大佬答疑解惑
为什么这个只能输出最后一个数。。。#include<stdio.h>
int main ()
{int a,b,c,max;
printf("please input a,b,c:\n");
scanf("%d,%d,%d",&a,&b,&c);
max=a;
if(max<b);
max=b;
if(max<c);
max=c;
printf("the largest number is %d\n",max);
return 0;
}
[此贴子已经被作者于2018-1-26 15:59编辑过]