本文主要是介绍编写一个程序,输入a、b、c三个值,输出其中最大值。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
/*
题目描述
编写一个程序,输入a、b、c三个值,输出其中最大值。
输入
在一行中输入三个整数
输出
三个数中最大的数
*/
#include<stdio.h>
#include<math.h>
int main(void)
{
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
if(a > b && a > c)
printf("%d", a);
if(b > a && b > c)
printf("%d", b);
if(c > a && c > b)
printf("%d", c);
return 0;
}
这篇关于编写一个程序,输入a、b、c三个值,输出其中最大值。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!