5 条题解

  • 0
    @ 2026-4-25 21:22:43

    都是反骨仔 #include <stdio.h>

    int main() { int score;

    scanf("%d", &score);
    
    
    if (score >= 90) {
        printf("Great\n");
    } else if (score >= 70) {
        
        printf("Good\n");
    } else if (score >= 60) {
        
        printf("Average\n");
    } else {
        
        printf("Poor\n");
    }
    
    return 0;
    

    }

    信息

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