码迷,mamicode.com
首页 > 编程语言 > 详细

c语言实践 给三个数输出最大的那个数

时间:2018-09-14 01:08:52      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:else   print   保存   c语言   printf   highlight   div   nbsp   greatest   

我是怎么想的,我前面学过两个数比大小,比如有三个数,a b c,先比较a和b的大小,然后用那个较大的和c比较就得出最大的那个了。这个求三个数比大小的问题最后变化成 了两个数比大小了。

 

int main()
{
	int a = 0;
	int b = 0;
	int c = 0;
	int max2 = 0;//保存两个数中较大的那一个
	int max3 = 0;//保存三个数中最大的那一个

	scanf_s("%d %d %d",&a,&b,&c);

	//先找出a b中较大的那一个
	if (a > b)
	{
		max2 = a;
		if (max2 > c)
		{
			printf("%d is the greatest",max2);
		}
		else
		{
			printf("%d is the greatest",c);
		}
	}
	else
	{
		max2 = b;
		if (max2 > c)
		{
			printf("%d is the greatest",max2);
		}
		else
		{
			printf("%d is the greatest",c);
		}
	}



}

  

c语言实践 给三个数输出最大的那个数

标签:else   print   保存   c语言   printf   highlight   div   nbsp   greatest   

原文地址:https://www.cnblogs.com/yfish/p/9644157.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!