以下有关数组定义的语句序列中,错误的是( )。

admin2009-02-13  29

问题 以下有关数组定义的语句序列中,错误的是(    )。

选项 A、Static arr1(3)       arr1(1)=100       arr1(2)="Hello"     arr1(3)=123.45
B、Dim arr2()  AsInteger   Dim size As Integer   Private Sub Command2_Click  ()      size=InputBox("输入:")      ReDim arr2(size)      ……   EndSub
C、Option Base 1   Private Sub Command3 Click()            Dim art3(3) As Integer                ……   End Sub
D、Dim n As Integer      Private Sub Command4 Cliok()   Dim arr4(n)As Integer      ……   End Sub

答案8

解析 在声明数组时,其下标必须为确定的值。
转载请注明原文地址:https://kaotiyun.com/show/en1p777K
0

最新回复(0)