8 条题解

  • 0
    @ 2025-1-10 23:04:52

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

    信息

    ID
    112
    时间
    1000ms
    内存
    256MiB
    难度
    3
    标签
    (无)
    递交数
    965
    已通过
    523
    上传者