下列程序段的执行结果为  m=1  n=1  Select Case m    Case 1      Select Case n        Case 0           Print "* * 0 * *"        Case 1       

admin2013-04-11  13

问题 下列程序段的执行结果为  m=1  n=1  Select Case m    Case 1      Select Case n        Case 0           Print "* * 0 * *"        Case 1           Print " * * 1 * * "     End Select   Case 2     print " * * 2 * * "  End Select

选项 A、* * 0 * *
B、* * 1 * *
C、* * 2 * *
D、0

答案2

解析 Select Case结构的一般格式为:
Select Case expr
  [Case expr1]
    [clause 1]
  [Case expr2]
    [clause 2]
  [Case else]
   [clause n]
End Select
其中expr是测试表达式,如果满足expr n,就执行这条语句,然后退出,因为 m=1、n=1,所以执行语句Print" * * 1 * * "。
转载请注明原文地址:https://kaotiyun.com/show/U4hp777K
0

最新回复(0)