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

优秀

B

良好

C

及格

D

不及格

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