下面为合法的数组声明和构造语句的是_______。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);
参考答案和解析
int[] ages=new int[100]
相关考题:
下面的语句用Array函数为数组变量a的各元素赋整数值:a=Array(1,2,3,4,5,6,7,8,9)针对a的声明语句应该是A.Dim aB.Dim a As IntegerC.Dim a(9) As IntegerD.Dim a() As Integer
下面的数组声明语句中( )是正确的。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中的每一个元素都被设置成""
使用语句DimA(1 Tb 10)As Integer声明数组A后,以下叙述正确的是( )。A.A数组中的所有元素值为0B.A数组中的所有元素值不确定C.A数组中的所有元素值为EmptyD.执行语句“Erase A”后,A数组中的所有元素值为Null
以下叙述中正确的是A.语句int a[8]={0};是合法的B.语句inta[]={0};是不合法的,遗漏了数组的大小C.语句char a[2]={ "A","BII};是合法的,定义了一个包含两个字符的数组D.语句char a[3];a="AB";是合法的,因为数组有三个字符空间的容量,可以保存两个字符
在窗体模块的通用声明处用下面的语句声明变量、数组,正确语句有()个。 ①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);
单选题在窗体模块的通用声明处用下面的语句声明变量、数组,正确语句有()个。 ①PublicA(5)AsInteger ②PublicNAsInteger ③PublicStAsString ④Privateb()AsIntegerA4B3C2D1
多选题下面有关数组的说法哪些是错误的()A数组存放的是具有相同数据类型的多个数据B数组的下标允许是常数、表达式或变量CDIM语句声明的数组把数组中的全部数组都初始化为逻辑型D多维数组中每一维的大小为上界-下界;数组的大小为每一维大小的乘积E动态数组是指在声明时没有给出数组的大小,当要使用数组时,再决定数组的大小
单选题下面哪一个是合法的数组声明和构造语句()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);