输入四个整数,找出其中的最大值,用函数的嵌套调用来处理

输入四个整数,找出其中的最大值,用函数的嵌套调用来处理

#include<stdio.h>
int main()
{
	int max4(int a,int b,int c,int d);
	int a,b,c,d,max;
	scanf("%d%d%d%d",&a,&b,&c,&d);
	max=max4(a,b,c,d);
	printf("max=%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)
{
	if(a>=b)
	return a;
	else 
	return b;
}




版权声明:本文为Xing___wei原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。