You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
191 B

print("\n--- 2. 条件语句 ---")
score = 85
if score >= 90:
print("成绩优秀!")
elif score >= 60:
print("成绩合格。")
else:
print("成绩不合格,需要加油!")