题解 | #判断成绩等级#

判断成绩等级

http://www.nowcoder.com/practice/1a12e246764243ada9043699b9a1e7ef

#include <iostream>
using namespace std;

int main(){
    int score;
    cin>>score;
    if(score>=0 && score<=100){
        if(score>=90)
            cout<<"优秀";
        else if(score>=80)
            cout<<"良";
        else if(score>=70)
            cout<<"中";
         else if(score>=60)
             cout<<"及格";
        else
            cout<<"差";
    }
    else
        cout<<"成绩不合法";
    return 0;
}
全部评论
逻辑清晰明了
点赞 回复 分享
发布于 2023-07-18 10:28 四川

相关推荐

一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
评论
1
收藏
分享
牛客网
牛客企业服务