python score =int(input('请输入一个分数:')) if 100 >= score >= 90: print('A'
答案:2 悬赏:50 手机版
解决时间 2021-01-24 17:36
- 提问者网友:献世佛
- 2021-01-23 23:49
python score =int(input('请输入一个分数:')) if 100 >= score >= 90: print('A'
最佳答案
- 五星知识达人网友:神也偏爱
- 2021-01-24 01:04
# 如果你要持续输入的话,需要使用循环结构
# 比如:(示例,请根据需要自行更改)
def rank(score):
if score < 60:
print("D")
elif score < 80:
print("C")
elif score < 90:
print("B")
else:
print("A")
# 循环输入5次
for i in range(5):
score = int(input("In"))
rank(score)
# 比如:(示例,请根据需要自行更改)
def rank(score):
if score < 60:
print("D")
elif score < 80:
print("C")
elif score < 90:
print("B")
else:
print("A")
# 循环输入5次
for i in range(5):
score = int(input("In"))
rank(score)
全部回答
- 1楼网友:酒者煙囻
- 2021-01-24 02:26
你的全部代码贴出来看看
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯