用户:March_12th查看:1 回复:4 评论:1 创建时间:2020-07-17T15:54:24
a = int(input('请输入你的语文成绩:'))
b = int(input('请输入你的数学成绩:'))
c = int(input('请输入你的英语成绩:'))
if a > 90 and b > 90 and c > 90:
print('恭喜你成为三好学生')
elif a < 60 or b < 60 or c < 60:
print('别灰心哦,继续努力吧')
else:
print('再接再厉,争取成为三好学生')