其他分享
首页 > 其他分享> > 函数题---练习5-2--找两个数中最大者

函数题---练习5-2--找两个数中最大者

作者:互联网

 

 

函数接口定义

int max(int a, int b);

其中a和b是用户传入的参数,函数返回的是两者中较大的数。

 

测试测试样例

#include <stadio.h>
int max(int a, int b);

int main()
{
  int a,b;

  scanf("%d %d",&a,&b);
    
  printf("max = %d\n",max(a,b))

return 0;  
}

 

 

答案

int max(int a,int b){
if(a>b){
return a;
}
else return b;
}

 

标签:return,函数,--,max,---,int,测试,数中
来源: https://www.cnblogs.com/hechunfeng/p/15559274.html