20 条题解

  • 4
    @ 2024-2-23 10:19:29
    #include<bits/stdc++.h> 
    using namespace std;
    int main(){
        int u;
        cin>>u;
        if(u>=90 and u<=100)cout<<"Great";
        if(u>=70 and u<=89)cout<<"Good";
        if(u>=60 and u<=69)cout<<"Average";
        if(u>=0 and u<=59)cout<<"Poor";
        return 0; 
    }
    

    信息

    ID
    2130
    时间
    1000ms
    内存
    256MiB
    难度
    2
    标签
    递交数
    809
    已通过
    267
    上传者