下面程序段执行结果为 x=Int(Rnd()+4) Select Case x Case 5 Print"excellent" Case4 Print"good
13 查阅
下面程序段执行结果为
x=Int(Rnd()+4)
Select Case x
Case 5
Print"excellent"
Case4
Print"good"
Case 3
Print"pass"
Case Else
Print "fail"
End Select
A.excellent
B.good
C.pass
D.fall
参考答案: