摘要: type array[][]; type[][] array;其中,type 表示二维数组的类型,array 表示数组名称,第一个中括号表示行,第二个中括号表示列int[][] temp;temp=new int[][]{{1,2},{3,4}};int[][] temp;temp=new int 阅读全文
posted @ 2021-08-11 21:20 马冉冉 阅读(81) 评论(0) 推荐(0)