scanf("%d,%d",&a,&b);==》scanf("%d %d",&a,&b);要不然输入的时候手动加逗号分隔两个数字
#include
#include
int main(){
int a,b,max;
printf("enter a and b\n");
scanf("%d",&a);
scanf("%d",&b);
if(a>b) max=a;
else max=b;
printf("max=%d\n",max);
system("pause");
return 0;
}