摘要: public static void main(String[] args) { //创建一个*的棋盘,其中代表黑子,2代表白子,其余用零待敌 int[][] array1 = new int[11][11]; array1[1][2] = 1; array1[2][3] = 2; System.o 阅读全文
posted @ 2020-08-07 20:12 兔兔1234 阅读(92) 评论(0) 推荐(0)