int main()
{
int max(int x,int y);
int a,b,c;
printf("please input a,b\n");
scanf("%d,%d",& a,& b); //%d can only read plastic data. If you enter 1.1 and 2.2, a=1, and the decimal point and everything behind it can't be read, resulting in B not being assigned
C = Max (a, b);
printf("The largest is %d\n",c);
return ;
}
int max(int x,int y)
{
int z;
if(x> y)z=x;
else z=y;
return z;
}