该程序获取 3 个数字并找出其中最大的一个。为此,我们将相互比较数字并找出最大的
Input: a=2,b=4,c=7 Output:7 Largest Number
该程序仅使用 if 语句来查找最大数。
#include <iostream> using namespace std; int main() { int a,b,c; a=2,b=4,c=7; if(a>b) { if(a>c) { printf("%d Largest Number ",a); } else { printf("%d Largest Number ",c); } } else { if(b>c) { printf("%d Largest Number ",b); } else { printf("%d Largest Number ",c); } } return 0; }
以上是C程序:找出三个数中的最大数的详细内容。更多信息请关注PHP中文网其他相关文章!