摘要: public class Queen { static final int QUEEN_MAX = 8; // 皇后的数量 int[][] Queencount = new int[QUEEN_MAX][QUEEN_MAX]; // 分配8X8的数组,充当棋盘,存放皇后 int resultCoun 阅读全文
posted @ 2016-09-17 22:12 Catherina12 阅读(113) 评论(0) 推荐(0) 编辑