使用Dim a(2,3) As Integer语句声明数组后,系统会出现“下标越界”出错信息的引用是____。
举一反三
- 使用Dim a(2,3) As Integer语句声明数组后,系统会出现“下标越界”出错信息的引用是( ) A: a(0,0) B: a(2,3) C: a(3,2) D: a(2,2)
- 下列数组声明语句,________是正确的。 A: Dim a(2,3) As Integer B: Dim a(m,n) As Integer C: Dim a(2 3) As Integer D: Dim a[3,2] As Integer
- 下面数组声明语句错误的是__________。 A: Dim a%(-5 to -3) B: Dim a%(-1 to 2,3) C: Dim n%,a%(n) D: Dim a(-1 to 0) as Integer
- 如下数组声明语句,哪一个正确 ( ) A: Dim a[3,4] as Integer B: Dim a(3,4) As Integer C: Dim a(3;4) as Integer D: Dim a(3:4) As Integer
- 使用语句Dim A(2) As Integer 声明数组A之后,以下说法正确的是: