下面哪一个是合法的数组声明和构造语句?()A.int[] ages = [100];B.int ages = new int[100];C.int[] ages = new int[100];D.int() ages = new int(100);
下面哪一个是合法的数组声明和构造语句?()
A.int[] ages = [100];
B.int ages = new int[100];
C.int[] ages = new int[100];
D.int() ages = new int(100);
参考答案和解析
C
相关考题:
若有语句:taticcharx[]=”12345″;staticchary[]={‘1′,’2′,’3′,’4′,’5’};则下面那一个是正确的描述。() A.x数组和y数组的长度相同B.x数组长度大于y数组长度C.x数组长度小于y数组长度D.x数组等价于y数组
下面的数组声明语句中( )是正确的。A.Dim A[3,4]As IntegerB.Dim A(3,4)As IntegerC.Dim A[3;4]As IntegerD.Dim A[3;4]As Integer
关于下面语句的说法正确的是 String[]s=new String[10][];A.该语句不合法B.该语句定义了一个二维数组,它包括10行10列C.s是一个包含10个数组的数组D.s中的每一个元素都被设置成""
下列数组声明语句中,正确的是( )。 A.Dim A[3,4]As IntegerB.Dim A(3,4)As IntegerS 下列数组声明语句中,正确的是( )。A.Dim A[3,4]As IntegerB.Dim A(3,4)As IntegerC.Dim A[3;4]As IntegerD.Dim A(3;4)As Integer
在窗体模块的通用声明处用下面的语句声明变量、数组,正确语句有()个。 ①PublicA(5)AsInteger ②PublicNAsInteger ③PublicStAsString ④Privateb()AsIntegerA、4B、3C、2D、1
下面哪一个是合法的数组声明和构造语句()A、 int[] ages = [100];B、 int ages = new int[100];C、 int[] ages = new int[100];D、 int() ages = new int(100);
下面数组声明语句中()是正确的A、dimma[1:5,1:5]asstringB、dimma[5to5]asstringC、dimma(1to5,1to5)asstringD、dimma(1:5,1:5)asstring
单选题在窗体模块的通用声明处用下面的语句声明变量、数组,正确语句有()个。 ①PublicA(5)AsInteger ②PublicNAsInteger ③PublicStAsString ④Privateb()AsIntegerA4B3C2D1
多选题下面有关数组的说法哪些是错误的()A数组存放的是具有相同数据类型的多个数据B数组的下标允许是常数、表达式或变量CDIM语句声明的数组把数组中的全部数组都初始化为逻辑型D多维数组中每一维的大小为上界-下界;数组的大小为每一维大小的乘积E动态数组是指在声明时没有给出数组的大小,当要使用数组时,再决定数组的大小
单选题下面数组声明语句中()是正确的Adimma[1:5,1:5]asstringBdimma[5to5]asstringCdimma(1to5,1to5)asstringDdimma(1:5,1:5)asstring
单选题下面哪一个是合法的数组声明和构造语句()Aint[]ages=[100];Bint ages=new int[100];Cint[]ages=new int[100];Dint()ages=new int(100);
单选题下面哪一个是合法的数组声明和构造语句()A int[] ages = [100];B int ages = new int[100];C int[] ages = new int[100];D int() ages = new int(100);