单项选择题

下面程序段执行结果为
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