-->
当前位置:首页 > 题库

单选题:下列程序运行输出结果为_______。

Luz4年前 (2022-06-14)题库1621
下列程序运行输出结果为_______。

score = 88
if(score>=90):
print('Excellent')
elif(score>=80):
print('Very Good')
elif(score>=70):
print('Good')
elif(score>=60):
print('Pass')
else:
print('Fail')





A.Excellent
B.Very Good
C.Pass
D.Fail


答案:B