#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);}你的程序有问题,我给你改了,操作请看注释。。