1 条题解

  • 0
    @ 2025-11-29 12:35:43

    C :

    #include<stdio.h>
     
     
     
    int main() {
        int a, b, c;
        scanf("%d%d%d", &a, &b, &c);
        int m = a > b ? a : b;
        int n = c < m ? c : m;
        printf("The result is %d\n", n);
        return 0;
    }
    
    • 1

    信息

    ID
    119
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    递交数
    0
    已通过
    0
    上传者