Which correctly create a two dimensional array of integers? ()

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

时间:2024-03-13 15:10:54

相似题目