第27062题 单选
以下Python代码运行后的输出结果是什么?
score = 75
if score >= 9:
    print("优秀")
elif score >= 8:
    print("良好")
elif score >= 6:
    print("及格")
else:
    print("不及格")
A

优秀

B

良好

C

及格

D

不及格

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析