1 solutions

  • 0
    @ 2023-7-26 16:08:59
    #include <bits/stdc++.h>          		//头文件
    using namespace std;              		//命名空间
    
    int main()                              //主函数,程序入口
    {
        int a=0;
        cin>>a;
    
        if(a>=90 && a<=100)
        {
            cout<<"Great\n";
        }
        else if(a>=70 && a<=89)
        {
            cout<<"Good"<<endl;
        }
        else if(a>=60 && a<=69)
        {
            cout<<"Average"<<endl;
        }
        else
        {
            cout<<"Poor"<<endl;
        }
    	return 0;                        	//程序结束,返回
    }
    
    

    Information

    ID
    542
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    4
    Tags
    # Submissions
    193
    Accepted
    64
    Uploaded By