#include<stdio.h>
int main()
{
int max4(int,int,int,int); //可省略//
int a,b,c,d,max; //函数声明//
printf("请输入四个数值:\n");
scanf("%d%d%d%d",&a,&b,&c,&d);
max=max4(a,b,c,d);
printf("最大值为%d\n",max);
return 0;
}
int max4(int a,int b,int c,int d)
{
int max2(int a,int b); //嵌套调用函数//
int m;
m=max2(a,b);
m=max2(m,c);
m=max2(m,d);
return m;
}
int max2(int a,int b)//定义函数//
{
return(a>b?a:b); //三目运算符//
}
标签:return,int,max,最大值,d%,max4,max2,四个,比较 From: https://blog.51cto.com/u_15865347/5870427