单项选择题

下面程序段执行结果为
x=Iht(Rnd()+4)
Select Case x
  Case 5
    Print"excellent"
Case 4
    Print"good"
  Case 3
    Print"paSS"
  Case Else
    Print "fail"
End Select

A.excellent
B.good
C.pass
D.fail