21xrx.com
2024-12-22 23:25:58 Sunday
登录
文章检索 我的文章 写文章
C语言中求三个数的最大值的方法及代码
2023-06-15 16:34:35 深夜i     --     --
C语言 求最大值 三个数 变量 比较 更新

在C语言中,求三个数的最大值是一种常见的程序需求。下面我们来介绍一种简单的方法及对应代码。

方法:定义一个变量max,先将其中两个数比较,将较大值赋给max,再将max与第三个数比较,更新max的值,最后输出max即可。

代码:


#include

int main() {

  int a, b, c, max;

  printf("请输入三个整数:\n");

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

  max = a > b ? a : b;

  max = max > c ? max : c;

  printf("三个数中的最大值为:%d\n", max);

  return 0; 

}

  
  
下一篇: 的输入输出

评论区

{{item['qq_nickname']}}
()
回复
回复