5 solutions

  • 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;
    

    }

    Information

    ID
    67
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    2
    Tags
    (None)
    # Submissions
    1725
    Accepted
    1001
    Uploaded By