C 两个数的比较
#include "stdio.h"#include "conio.h"
main()
{
int a,b,c;
scanf("%d,%d",&a,&b);
c=max(a,b);
printf("max=%d",c);
}
int max(int x,int y)
{ int z;
if(x>y)z=x;
else z=y;
return(z);
getch();
}
初学者,求大神们赐教 怎么输出结果
[此贴子已经被作者于2016-11-10 10:00编辑过]