能编译可数值不正确,是咋回事
小弟刚学C一些很肤浅的东西不会了.请大哥大姐帮忙看看,
谢谢了,
着是个求最大值.可编译后数值不对,
问题出在什么地方啊.
#include<stdio.h>
main()
{
int a ,b,c,max;
printf("Enter three number\n");
scanf("%d,%d,%d",&a,&b,&c);
if(a>b)max=a;
else max=b;
if(a>c)max=a;
else max=c;
if(b>c)max=b;
else max=c;
printf("%d",max);
return 0;
}