提示
90及以上为优秀,80及以上为良好,70及以上为中,60以上为及格,否则不及格
样例输入
95
样例输出
优秀
样例输入
85
样例输出
良好
样例输入
75
样例输出
中
样例输入
65
样例输出
及格
解题代码
a=int(input()) if a>=90: print("优秀") elif a>=80: print("良好") elif a>=70: print("中") elif a>=60: print("及格") else: print("不及格")
标签:及格,输出,elif,编程,样例,输入,print,成绩,等级 From: https://www.cnblogs.com/hghdbk/p/16716540.html