下面程序段执行结果为
x=Int(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.fall
第1题:
下面程序段执行结果为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) 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
第3题:
执行下面程序段后,a显示结果为()。 int x=3,a=1; switch(x) { case 4: a++; case 3: a++; case 2: a++; case 1: a++; } printf ("%d",a);
A.4
B.3
C.2
D.1
第4题:
下列程序段的执行结果为______。 x=Int (Rnd+4) Select Case x Case 5 Print“优秀” Case 4 Print“良好” Case 3 Print“通过” Case Else Print“没有通过” End Select
A. 优秀
B.良好
C.通过
D.没有通过
第5题:
下面程序段执行结果为 x=Int(Rnd()+3) 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