itgle.com
参考答案和解析
参考答案:B
更多“用DIMs(4)定义的数组可存放的元素个数为()。A、4B、5C、6D、7 ”相关问题
  • 第1题:

    定义了int型二维数组a[6][7]后,数组元素a[3][4]前的数组元素个数为()。

    A.24

    B.25

    C.18

    D.17


    25

  • 第2题:

    用Dim b(-2 To 4) As String 语句所定义的数组元素个数是__________个。

    A.2

    B.4

    C.6

    D.7


    4

  • 第3题:

    定义含有10个元素的数组(具体值为:1,2,3,4,5,6,7,8,9,10),并将数组中的元素按逆序重新存放后输出(只是用所定义的原数组,而不使用新的数组)。


    public static void main(String[] args) { int[] a = {1,2,3,4,5,6,7,8,9,10}; int max=a[0]; for(int i =1;i { if(a[i]>max) { max=a[i]; } } System.out.println(max); }

  • 第4题:

    定义了int型二维数组a[6][7]后,数组元素a[3][4]前的数组元素个数为()

    A.24

    B.25

    C.18

    D.17


    25

  • 第5题:

    定义了int型二维数组a[6][7]后,数组元素a[3][4]前的数组元素个数为()。


    25