以下是引用雨落北川在2012-7-29 14:10:11的发言:
输入23回车、
或者改下
#include
int max(int x,int y);
int main()
{
int a,b,c;
printf("please type in number like this : 5,6 then type the enter button\n");
scanf("%d,%d",&a,&b);
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);
}
附vc++6.0下运行结果
图片附件: 游客没有浏览图片的权限,请
登录 或
注册