摘要: 稀疏数组 public static void main(String[] args) { //1.创建一个二维数组 11*11 0:没有棋子 1:黑棋 2:白棋 int[][] array1 = new int[11][11]; array1[1][2] = 1; array1[2][3] = 2 阅读全文
posted @ 2024-01-12 11:11 fightownself 阅读(3) 评论(0) 推荐(0) 编辑