用python输入百分制成绩,根据成绩判断奖励: 90-100:法拉利 80-89:宝马 70-79:奥迪 60-69:奥拓 <60:大嘴巴子
时间: 2024-05-19 20:15:52 浏览: 75
Python 输入一个数字判断成绩分数等级的方法
score = int(input("请输入成绩:"))
if score >= 90 and score <= 100:
print("恭喜您获得法拉利!")
elif score >= 80 and score <= 89:
print("恭喜您获得宝马!")
elif score >= 70 and score <= 79:
print("恭喜您获得奥迪!")
elif score >= 60 and score <= 69:
print("恭喜您获得奥拓!")
else:
print("很遗憾,您获得了大嘴巴子!")
阅读全文