程序在C ++中使用三元运算符查找最大数

在本教程中,我们将讨论一个使用三元运算符查找最大数目的程序。

为此,我们将提供两个数字。我们的任务是找出其中最大的数字,并使用三元运算符将其打印出来。

示例

#include <stdio.h>

int main() {

   int n1 = 5, n2 = 10, n3 = 15, max;

   //寻找最大

   max = (n1 > n2) ? (n1 > n3 ? n1 : n3) : (n2 > n3 ? n2 : n3);

   printf("Largest number among %d, %d and %d is %d.", n1, n2, n3, max);

   return 0;

}

输出结果

Largest number among 5, 10 and 15 is 15.

以上是 程序在C ++中使用三元运算符查找最大数 的全部内容, 来源链接: utcz.com/z/350245.html

回到顶部