有3个整数a, b, c,由键盘输入,输出其中最大的数

有3个整数a, b, c,由键盘输入,输出其中最大的数

点我看视频讲解+可运行代码,记得收藏视频,一键三连
解题思路: 每个数字两两与剩余两个数字进行比较,若比剩下的两个数大则最大,例如:a>b && a>c则a是最大的

答案:

#include <stdio.h>
int main()
{
    int a, b, c;
    scanf("%d %d %d", &a, &b, &c);
    if (a == b && a == c) {
        printf("Three numbers are equal
");
    }else if (a == b && a > c) {
        printf("a and b are the largest number
", a); 
    }else if (a == c && a > b) {
        printf("a and c are the largest number
", a); 
    }else if (b == c && b > a) {
        printf("c and b are the largest number
", a); 
    }else if (a > b && a > c) {
        printf("a=%d is the largest number
", a); 
    }else if (b > a && b > c) {
        printf("b=%d is the largest number
", b); 
    }else {
        printf("c=%d is the largest number
", c); 
    }   
    return 0;
}

有3个整数a, b, c,由键盘输入,输出其中最大的数

原文地址:https://www.cnblogs.com/weiyidedaan/p/13541953.html