2022年5月2日
摘要: public class Demo08 { public static void main(String[] args) { //创建一个10*10的二维数组,最终将该数组对应的稀疏数组打印出来 int[][] array1 = new int[10][10]; array1[2][3] = 2; 阅读全文
posted @ 2022-05-02 18:25 三岁学JAVA 阅读(28) 评论(0) 推荐(0)
摘要: public class Demo08 { public static void main(String[] args) { //创建一个10*10的二维数组,最终将该数组对应的稀疏数组打印出来 int[][] array1 = new int[10][10]; array1[2][3] = 2; 阅读全文
posted @ 2022-05-02 10:42 三岁学JAVA 阅读(33) 评论(0) 推荐(0)