四个数求最大值

Posted duanqibo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了四个数求最大值相关的知识,希望对你有一定的参考价值。

/*
============================================================================
Name : max4.c
Author : zhangsan
Version :
Copyright : Your copyright notice
Description : 四个数求最大值
============================================================================
*/

#include <stdio.h>
#include <stdlib.h>
int max2(int x,int y)

int k;
k=(x>y)?x:y;
return k;

int find_max(int a, int b, int c, int d)

int aa,bb,max;
aa=max2(a,b);
bb=max2(c,d);
max=max2(aa,bb);
return max;

int main(void)

int a,b,c,d;
int max;
setbuf(stdout,NULL);
printf("请输入4个整数:");
scanf("%d%d%d%d",&a,&b,&c,&d);
max=find_max(a, b, c, d);
printf("四个整数中的最大值是:%d",max);
return 1;

以上是关于四个数求最大值的主要内容,如果未能解决你的问题,请参考以下文章

c语言中如何求五个数据中的最小值

C++实验02(01)函数重载

RMQ

java中返回两个数的最大值

用辗转相除法求两个整数的最大公约数

求JAVA的两整数输出最大最小值以及两个数的和差积商的程序