Commit 03353400 by BellCodeEditor

auto save

parent 120de9e0
impute turtle
Pen=turtle.pen
Chinese=int(input("请输入语文:"))
math=int(input("请输入数学:"))
English=int(input("请输入英语:"))
score=Chinese+math+English
if score >270:
print(score)
print("优秀")
elif score >=240 and score<270:
print(score)
print("良好")
elif score >=180 and score<240:
print(score)
print("合格")
else:
print(score)
print("不合格")
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment