python编写一个程序,实现将百分制成绩转换成等级制。要求: 1)能对用户输入的成绩进行有效性判断。 2)分数等级分为:A(90~100)、B(80~89)、C(70~79)、D(60~69)、F(0~59)。
时间: 2024-01-21 12:02:22 浏览: 114
python 百分制成绩转等级制成绩 示例
5星 · 资源好评率100%
好的,可以使用以下代码实现:
```python
score = input("请输入百分制成绩:")
if not score.isdigit():
print("输入无效,请输入数字!")
else:
score = int(score)
if score < 0 or score > 100:
print("输入无效,请输入0~100之间的数字!")
else:
if score >= 90:
grade = 'A'
elif score >= 80:
grade = 'B'
elif score >= 70:
grade = 'C'
elif score >= 60:
grade = 'D'
else:
grade = 'F'
print("成绩等级为:", grade)
```
首先使用input()函数获取用户输入的成绩,并进行有效性判断,如果不是数字则提示输入无效,如果数字不在0~100之间也提示输入无效。然后根据成绩范围判断成绩等级,并输出等级。
阅读全文