赞
踩
#数据输入
score=int(input('请输入学生的成绩:'))
#数据处理
if score>=90:
print("优")
elif score>=80:
print("良")
elif score>=70:
print("中等")
elif score>=60:
print("及格")
elif score<60:
print("不及格")
else:
print("输入成绩不正确,请重新输入")
#数据输出
下运行截图:
易错点:
上图缺少字符类型
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。