c语言程序--输入4个整数,找出其中最大的数,用函数嵌套来处理

#include
int main()
{
     
	int max4(int a,int b,int c,int d);
	int a,b,c,d,max;
	printf("please enter 4 interger numbers:");
	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;
}

你可能感兴趣的:(C语言,c++,函数嵌套,c语言)