赞
踩
代码;
score=int(input('请输入学生的成绩:'))
if(90<=score<=100):
print('优秀')
elif (80<=score<=90):
print('良好')
elif (70<=score<=80):
print('中等')
elif (60<=score<=70):
print('及格')
elif (0<=score<60):
print('不及格')
else:
print('输入数据错误')
结果:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。