//array initialization using shortcut syntax int[] arrI = {1,2,3}; int[][] arrI2 = {{1,2}, {1,2,3}};. If you notice above, the two dimensional array arrI2 is ...
確定! 回上一頁