score=int(input("Enter your score: "))
grade=""
if score<60:
   grade="不及格"
elif score<80:
   grade="及格"
elif score<90:
   grade="良好"
else:
   grade="优秀"
print("分数是{0},等级是{1}".format(score,grade))

点赞(0) 打赏

Comment list 共有 0 条评论

暂无评论
立即
投稿
发表
评论
返回
顶部