單項(xiàng)選擇題下面聲明一個(gè)整型的二維數(shù)組的語句中,”錯(cuò)誤“的是()

A.int []a[]=new int[10][10];
B.int a[][]=new int[][];
C.int [][]a=new int[10][10];
D.int a[][]=new int[10][10];


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題下列選項(xiàng)中不屬于Java中的基本數(shù)據(jù)類型的是()

A.byte
B.double
C.boolean
D.string

2.單項(xiàng)選擇題下面代碼中,可以把div中文本設(shè)為紅色的是()

A.document.getElementById("divResult").color=red;
B.document.getElementById("divResult").style.color=#10011;
C.document.getElementById("divResult").color=“red”;
D.document.getElementById("divResult").style.color=“red“;

4.單項(xiàng)選擇題下面SQL語句中,表示過慮條件是id=1001或id=1002的是()

A.select*from table where id in(1001   1002)
B.select*from product swhere id between 1001 and 1004
C.select*from table where id not in(1004  1005)
D.select*from table where id=1001 and vend_id=1002