c新手吧 关注:8,591贴子:48,089
  • 0回复贴,共1

这下怎么该?小白提问

只看楼主收藏回复

是要做显示两个数中的最大值
代码:
*******************************分割线*********************************
#include <stdio.h>
#include <stdlib.h>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char *argv[])
{
int a,b,c;
printf("请输入a和b:");
scanf("%d,%d",&a,&b);
c=MAX(a,b);
printf("最大值为%d\n",c);
}
int max(int x,int y,int m)
{
m=x;
if(m<y)
{
m=y;
}
return m;
}
***************************分割线***************************
图片


IP属地:广西1楼2015-10-20 11:32回复