单选题:下列程序运行输出结果为_______。
下列程序运行输出结果为_______。
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
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