为了账号安全,请及时绑定邮箱和手机立即绑定

Java:更换播放器

Java:更换播放器

BIG阳 2021-12-10 12:24:03
我不知道如何写一个转换回合来改变玩家编辑:从布尔播放器开始或同时...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以便在下一轮您的程序将知道播放器已切换。


查看完整回答
反对 回复 2021-12-10
  • 1 回答
  • 0 关注
  • 122 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信