下列程序段的执行结果是【 】。
x=Int (Rnd+4)
Select Case X
Case 5
Prunt "优秀"
Case 4
Print "良好"
Case 3
Print "合格"
Case Else
Print "不合格"
End Select
第1题:
下面程序段执行结果为( )。 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.fail
第2题:
下列程序段的运行结果为()。 Dim x x = Int(Rnd) + 5 Select Case x Case 5 Print "优秀" Case 4 Print "良好" Case 3 Print "及格" Case Else Print "不及格" End Select
A.不及格
B.良好
C.及格
D.优秀
第3题:
8、下面程序段,显示的结果是 。 Dim x% x = Int(Rnd) + 5 Select Case x Case 5 MsgBox("优秀") Case 4 MsgBox("良好") Case 3 MsgBox("通过") Case Else MsgBox("不通过") End Select
A.优秀
B.良好
C.通过
D.不通过
E.不确定,随机
第4题:
若int x=10; 执行下列程序后,变量x的正确结果是 。 switch (x ) { case 9: x++; case 10: x++; case 11: x++; break; default: x++; }
A.10
B.11
C.12
D.13
第5题:
下列程序段的执行结果是()。 Dim x As Integer x = 6 Select Case x Case 5 Print "优秀" Case 4 Print "良好" Case 3 Print "通过" Case Else Print "不通过" End Select
A.优秀
B.良好
C.通过
D.不通过