我想请问一下这个问题。我是照着书上编辑的怎么就和书上出出来的不一样
#include <stdio.h>#include <math.h>
int main()
{
int a,b,c,max;
scanf("%d,%d,%d",&a,&b,&c);
if(a>b)
max=a;
else
max=b;
if(c>max)
max=c;
printf("max:%d\n",max);
return 0;
}
2012-11-01 13:40
2012-11-01 14:07
2012-11-01 14:09
2012-11-01 14:44
2012-11-01 14:55