标签:io sp bs amp as c++ nbsp return ca
#include <stdio.h>
int main ()
{
int max(int x,int y);
int a,b,c;
printf("please enter two integer numbers:");
scanf("%d%d",&a,&b);
c=max(a,b);
printf("max is %d\n",c);
return 0;
}
int max(int x,int y)
{
int z;
if(x>y)
{
z=x;
}
else
{
z=y;
}
return(z);
}
标签:io sp bs amp as c++ nbsp return ca
原文地址:http://www.cnblogs.com/szz-55555/p/4111748.html