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

admin2009-01-15  21

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

答案2

解析 我们可以看到x=Int(Rnd()+4)语句,其中,Rnd是用来产生随机数的,其值在0~1之间,而在(Rnd()+4)前面有Int进行强制转换,所以x总为4, Select Case x…End Select语句体中的Case4 <CR> Print"good"语句。所以正确答案是选项B.
转载请注明原文地址:https://jikaoti.com/ti/4380FFFM
0

最新回复(0)