摘要: public class ArraysDemo { public static void main(String[] args) { // 初始化矩阵 int [][] a1 = new int[11][11]; a1[2][1]=1; a1[6][6]=2; a1[10][10]=3; Syste 阅读全文
posted @ 2021-05-14 07:17 FZZ98 阅读(72) 评论(0) 推荐(0)