注意:此页面搜索的是所有试题
假定要定义一个int型的二维数组为x,并假定它的行数为5,列数为6,则其定义语句为int [][] x=( )。
【A.】int[5][6];
【B.】new int[5][6];
【C.】new int[6][5];
【D.】new int[6][7];

参考答案