欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

求3个数中最大的数

程序员文章站 2022-05-12 10:57:32
...
#include<stdio.h>
#define MAX(a,b,c) (a)>(b)?((a)>(c)?(a):(c)):((b)>(c)?(b):(c))
int test1(int a, int b,int c)
{
	int max = a;
	if (max < b)
		max = b;
	if (max < c)
		max = c;
	return max;
}
int main()
{
	int a = 10;
	int b = 20;
	int c = 30;
	int Max = test1(a,b,c);
	printf("Max = %d\n", Max);//借助第四个变量比较
	printf("Max = %d\n", MAX(a,b,c));//借助宏
	system("pause");
	return 0;
}