c语言求两个整数中的较大者

2024-12-03 16:41:57
推荐回答(1个)
回答1:

#include
int max(int x,int y);
int main()
{
int a,b,c;
scanf("%d,%d",&a,&b);//输入方式为2,4中间是逗号。
c=max(a,b);
printf("max=%d\n",c);
return 0;
}

int max(int x,int y)
{
int z;
if(x>y)z=x;
else z=y;
return(z);
}
你的程序有问题,我给你改了,操作请看注释。。