从键盘上任意输入三个整数,输出其中的最大叔数

从键盘上任意输入三个整数,输出其中的最大叔数


#include <stdio.h>
int main()
{
    int a,b,c;
    scanf("%d%d%d",&a,&b,&c);
    int max = a > b? a : b;
    max = max > c? max : c;
    printf("%d",max);
    return 0;
}

https://zhidao.baidu.com/question/7888174.html