我不知道如何写一个转换回合来改变玩家编辑:从布尔播放器开始或同时...import java.util.*;public class Assignment {static Scanner sc = new Scanner(System.in);static int height = 6, width = 6, blank = 0; //do checkerboardstatic int white = 1, black = 2; //do player chessstatic int[][] board; public static void main(String[] args) { board = new int[height][width]; board[width / 2-1][height / 2-1] = board[width / 2][height / 2] = 1; board[width / 2-1][height / 2] = board[width / 2][height / 2-1] = 2; printHead(); printboard(); input();} public static void input() {}}
1 回答
杨__羊羊
TA贡献1943条经验 获得超7个赞
要确定哪个玩家在玩,您可以使用一个boolean
变量,例如boolean player1
. 每当player1
为真时,就轮到第一个玩家了。当它为假时,是第二个玩家轮到。在播放器完成后的方法中,您可以添加该行
player1 = !player1;
切换 的值,player1
以便在下一轮您的程序将知道播放器已切换。
添加回答
举报
0/150
提交
取消