- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编辑:我注意到,当您为 TicTacToe 表输入错误的数字时,我的程序会输出“无效移动”。什么会导致这种情况呢?我只使用 move(row, col) 方法一次,因此它不会重复无效输入两次。
我一直在构建一个 Tic Tac Toe 程序,我相信我已经完成了 99.9%。有一个令人讨厌的循环我无法弄清楚,我已经添加了一些东西一段时间来尝试修复它。我认为这只是一个我自己似乎无法注意到的小愚蠢错误。
无论如何,问题是一旦我完成游戏并输入"is",程序就会终止并结束。可能是什么原因造成的,因为我将 while 循环放在另一个 do while 循环中,这样我就可以摆脱它,然后立即返回到它。
这是我的整个代码。
import java.util.Scanner;
public class TicTacToe {
// These two variables are for placing the X's and O's in the TicTacToe
// table.
static int row;
static int col;
// This array is for the TicTacToe table.
static char[][] table = new char[3][3];
// This is for ending the while statement that controls the game
static boolean continuePlaying = true;
static boolean quitGame = false;
// These will store the names for player 1 and 2
static String p1;
static String p2;
// This variable is to count the number of games played
static int gamesCounter = 0;
// This variable is to count the number of moves
static int moveCounter = 0;
// These two variables are to keep track of the wins each player has
static int p1Wins = 0;
static int p2Wins = 0;
static void clearTable() {
for (int i = 0; i < table.length; i++) {
table[0][i] = ' ';
table[1][i] = ' ';
table[2][i] = ' ';
}
}
// This method will determine if the game is a tie.
static boolean checkTie() {
for (int i = 0; i < table.length; i++) {
for (int j = 0; j < table[i].length; j++) {
if (table[i][j] == ' ') {
return false;
}
}
}
return true;
}
// This is my displayTable() method. This will show the table and the X's or
// O's each player has played
static void displayTable() {
System.out.println(" 0 1 2");
System.out.println("0[" + table[0][0] + "][" + table[0][1] + "]["
+ table[0][2] + "]");
System.out.println("1[" + table[1][0] + "][" + table[1][1] + "]["
+ table[1][2] + "]");
System.out.println("2[" + table[2][0] + "][" + table[2][1] + "]["
+ table[2][2] + "]");
}
// This is my move(int row,int col) method. This will record the moves each
// player takes and insert X's or O's depending on which player
static boolean move(int row, int col) {
// This if statement will return false if the user enters in coordinates
// outside the 3x3 zone.
if (row > 2 || row < 0) {
System.out.println("Invalid move.");
return false;
}
// This if statement checks if the array already has an X or O in the
// chosen space. If the array is already filled it will return false.
else if (table[row][col] == 'X' || table[row][col] == 'O') {
System.out.println("Not available.");
return false;
} else
return true;
}
// This is my checkRow method. It checks for 3 X's or O's in a row. If there
// are 3 in a row it will return true, if not, it returns false.
static boolean checkRow(int row) {
if ((table[row][0] & table[row][1] & table[row][2]) == 'X')
return true;
if ((table[row][0] & table[row][1] & table[row][2]) == 'O')
return true;
else
return false;
}
// This is my checkCol method. It checks for 3 X's or O's in a row. If there
// are 3 in a row it will return true, if not, it returns false.
static boolean checkCol(int col) {
if ((table[0][col] & table[1][col] & table[2][col]) == 'X')
return true;
if ((table[0][col] & table[1][col] & table[2][col]) == 'O')
return true;
else
return false;
}
// This is my checkDiagonal method. It checks for 3 X's or O's in a row. If
// there are 3 in a row it will return true, if not, it returns false.
static boolean checkDiagonal() {
if ((table[0][0] & table[1][1] & table[2][2]) == 'X')
return true;
if ((table[2][0] & table[1][1] & table[0][2]) == 'X')
return true;
if ((table[0][0] & table[1][1] & table[2][2]) == 'O')
return true;
if ((table[2][0] & table[1][1] & table[0][2]) == 'O')
return true;
else
return false;
}
// This is my checkWinner method. It runs all the other checks to see if
// anyone won.
// If there is a winner the method returns true. If there is no winner yet,
// the method returns false.
static boolean checkWinner() {
if (checkRow(0) == true)
return true;
if (checkRow(1) == true)
return true;
if (checkRow(2) == true)
return true;
if (checkCol(0) == true)
return true;
if (checkCol(1) == true)
return true;
if (checkCol(2) == true)
return true;
if (checkDiagonal() == true)
return true;
else
return false;
}
public static void main(String[] args) {
// The Scanner for asking each player's names
Scanner s = new Scanner(System.in);
// The beginning structure of the TicTacToe program
System.out.println("TicTextToe");
System.out.print("Name of player 1: ");
p1 = s.nextLine();
// Asks for Player 2's name
System.out.print("Name of player 2: ");
p2 = s.nextLine();
do {
// The TicTacToe table set up, coordinates provided around the
// squares
// The displayTable() method will be used to display the table here.
while (continuePlaying == true) {
displayTable();
System.out.print("Player " + p1 + ":");
row = s.nextInt();
col = s.nextInt();
move(row, col);
// This will display the table again and ask for proper
// coordinates.
while (move(row, col) == false) {
displayTable();
System.out.println("Player " + p1 + ":");
row = s.nextInt();
col = s.nextInt();
move(row, col);
}
// This inputs the X into the table if move(row, col) returns
// true.
if (move(row, col) == true) {
moveCounter++;
table[row][col] = 'X';
}
// This will check if p1 just won the game or if the game needs
// to
// continue
checkRow(0);
// System.out.println(checkRow(0)); //This prints out if row 0
// is
// true or false
checkRow(1);
// System.out.println(checkRow(1)); //This prints out if row 1
// is
// true or false
checkRow(2);
// System.out.println(checkRow(2)); //This prints out if row 2
// is
// true or false
checkCol(0);
// System.out.println(checkCol(0)); //This prints out if column
// 0 is
// true or false
checkCol(1);
// System.out.println(checkCol(1)); //This prints out if column
// 1 is
// true or false
checkCol(2);
// System.out.println(checkCol(2)); //This prints out if column
// 2 is
// true or false
checkDiagonal();
// System.out.println(checkDiagonal()); //This prints out true
// or
// false depending on the diagonals
checkWinner();
// System.out.println(checkWinner()); //This prints out if
// checkWinner is true or false. If it's true the while loop
// should
// end
// This will check if there is a tie
// checkTie();
if (moveCounter == 9) {
displayTable();
System.out.println("It's a tie!");
gamesCounter++;
clearTable();
moveCounter = 0;
System.out.println("Another Game? Yes/No :");
String answer = s.next();
if (answer.equals("Yes")) {
break;
}
if (answer.equals("No")) {
continuePlaying = false;
clearTable();
System.out.println("Statistics:");
System.out.println(p1 + p1Wins + "/" + gamesCounter);
System.out.println(p2 + p2Wins + "/" + gamesCounter);
quitGame = false;
break;
}
}
if (checkWinner() == true) {
displayTable();
System.out.println("Player " + p1 + " wins!");
gamesCounter++;
p1Wins++;
clearTable();
moveCounter = 0;
System.out.println(p1 + " " + p1Wins + "/" + gamesCounter);
System.out.println(p2 + " " + p2Wins + "/" + gamesCounter);
System.out.println("Another game? Yes/No :");
String answer = s.next();
if (answer.equals("Yes")) {
break;
} else if (answer.equals("No")) {
continuePlaying = false;
System.out.println("Statistics:");
System.out.println(p1 + p1Wins + "/" + gamesCounter);
System.out.println(p2 + p2Wins + "/" + gamesCounter);
quitGame = false;
break;
}
}
displayTable();
System.out.print("Player " + p2 + ":");
row = s.nextInt();
col = s.nextInt();
move(row, col);
// This will display the table again and ask for proper
// coordinates.
while (move(row, col) == false) {
displayTable();
System.out.println("Player " + p2 + ":");
row = s.nextInt();
col = s.nextInt();
move(row, col);
}
// This inputs the O into the table if move(row, col) returns
// true.
if (move(row, col) == true) {
moveCounter++;
table[row][col] = 'O';
}
// This will check if p2 just won the game or if the game needs
// to
// continue
// checkRow(0);
// System.out.println(checkRow(0)); //This prints out if row 0
// is
// true or false
checkRow(1);
// System.out.println(checkRow(1)); //This prints out if row 1
// is
// true or false
checkRow(2);
// System.out.println(checkRow(2)); //This prints out if row 2
// is
// true or false
checkCol(0);
// System.out.println(checkCol(0)); //This prints out if column
// 0 is
// true or false
checkCol(1);
// System.out.println(checkCol(1)); //This prints out if column
// 1 is
// true or false
checkCol(2);
// System.out.println(checkCol(2)); //This prints out if column
// 2 is
// true or false
checkDiagonal();
// System.out.println(checkDiagonal()); //This prints out true
// or
// false depending on the diagonals
checkWinner();
// System.out.println(checkWinner()); //This prints out if
// checkWinner is true or false. If it's true the while loop
// should
// end
// This will check if there is a tie
// checkTie();
if (moveCounter == 9) {
displayTable();
System.out.println("It's a tie!");
gamesCounter++;
clearTable();
moveCounter = 0;
System.out.println("Another Game? Yes/No :");
String answer = s.next();
if (answer.equals("Yes")) {
break;
}
if (answer.equals("No")) {
continuePlaying = false;
clearTable();
System.out.println("Statistics:");
System.out.println(p1 + p1Wins + "/" + gamesCounter);
System.out.println(p2 + p2Wins + "/" + gamesCounter);
quitGame = false;
break;
}
}
if (checkWinner() == true) {
displayTable();
System.out.println("Player " + p2 + " wins!");
gamesCounter++;
p2Wins++;
clearTable();
System.out.println(p1 + " " + p1Wins + "/" + gamesCounter);
System.out.println(p2 + " " + p2Wins + "/" + gamesCounter);
System.out.println("Another game? Yes/No :");
String answer = s.next();
if (answer.equals("Yes")) {
break;
}
if (answer.equals("No")) {
continuePlaying = false;
clearTable();
System.out.println("Statistics:");
System.out.println(p1 + p1Wins + "/" + gamesCounter);
System.out.println(p2 + p2Wins + "/" + gamesCounter);
quitGame = true;
break;
}
}
}
} while (quitGame = false);
}
}
最佳答案
您的状况检查正常:
while (quitGame = false);
应该是:
while (quitGame == false);
双等号。
关于java - Tic Tac Toe 程序循环问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28388383/
我是初学者,所以我的代码很乱。我还没有完整地评论这个游戏,所以如果你需要澄清一些变量,我可以给你。 (顺便说一句,这是一个要求制作井字游戏的c++项目) 我的主要问题是,我将如何重复我的棋盘(每次有人
我正在为C的Tic Tac Toe代码编写一个简单的游戏。我已经完成了大部分代码,但是我希望AI永不丢失。 我已经阅读了有关minimax算法的信息,但我不理解。如何使用此算法使计算机获胜或平局,但永
感谢这里人们的帮助,我成功地禁用了点击 div 并在已经使用 $(".pos").addClass('already-played'); 选择它们时覆盖它们; 以及 CSS 中的这个: .已经播放{
我有一个井字棋游戏,其中用户(x)玩CPU(o)。游戏开始时,CPU 将 (o) 放置在中心,并在用户之后移动到随机位置。游戏设置为循环,但一旦出现获胜者,它就会重置,并且不会显示“你赢/输的横幅”。
我试图在没有人工智能的情况下实现井字棋游戏。不知怎的,我的点击功能会自动触发。您能帮我理解为什么点击功能会自动触发吗?这是 HTML 代码片段。 Tic Tac Toe Gam
我正在制作一个井字游戏程序。我计划将 minimax 与它一起使用。我制作了一棵树,其中包含所有可能的游戏序列的空间,并且我正在寻找一种方法来填充它。我目前有这种类型: typedef struct
我正在尝试遵循本教程: https://www.youtube.com/watch?v=Db3cC5iPrOM 2:59 我听不懂他在说什么。 我不明白为什么他在构造函数(public static
我在这里为我的java作业编写了井字棋游戏,一切都很好,除了一个小问题,即当您输入最后一步(第九回合)时,最后一个“X”不显示。这不仅很烦人,因为获胜的棋子没有显示,而且还导致了一些问题,即领带方法没
我对编码和 Java 比较陌生,在我的 CS-173 类(class)中,我的任务是创建一个 Tic Tac Toe 游戏。然而,当谈到创建确定获胜者的方法时,每当我获得“胜利”时,代码都不会运行说我
您好,我想尝试制作一个井字游戏,但遇到问题。我仍然是一个初学者,所以请随意提供有关组织和类似内容的提示,但我的问题是我的方法 checkRowWin、checkColoumnWin 和 E.T.C 添
我正在研究 Tic-Tac-Toe 游戏 (3x3) 的 alpha-beta 剪枝算法。目前,对于任何给定的 3x3 网格实例,我都能找出最好的情况: public Best chooseAlpha
我是一名初学者,正在学习 Java super 技能类(class)。我试图尝试 this VS Code 中的 tic tac toe 游戏项目。效果很好。但代码在提交时出错。 代码: packag
我已经研究“死代码”和“无法访问的代码”有一段时间了,但我似乎仍然无法弄清楚我的程序中这个问题是怎么回事。这是我所拥有的一个片段; “gameEnd()”方法检查 Tic Tac Toe 中的获胜者:
我目前正在做一项任务,即创建一个 Tic Tac Toe 游戏。我已经做到了玩家可以在棋盘上放置标记、绘制标记并随后切换回合。但是,只有当玩家将其标记放在左上角(第一个)字段时,我检查是否存在获胜条件
编辑:我注意到,当您为 TicTacToe 表输入错误的数字时,我的程序会输出“无效移动”。什么会导致这种情况呢?我只使用 move(row, col) 方法一次,因此它不会重复无效输入两次。 我一直
import java.util.Scanner; public class TTT{ public static int row, col; public static Scanner scan =
这个问题已经有答案了: Is Java "pass-by-reference" or "pass-by-value"? (91 个回答) 已关闭 7 年前。 我的井字棋程序有一个小问题。我有一个嵌套计
我正在用 python 开发一个 tic-tac-toe 程序。现在,轮到人类了,一切顺利。然而,AI 在玩完第一个回合后,不会再玩任何后续回合。我扫描了代码,似乎找不到任何可能导致此问题的错误。 请
function checkWin(){ if (arro[0] === arro[1] === arro[2] === 1 || arro[3] === arro[4] === arro[5] ==
我尝试更改innerHTML 的所有内容都没有改变任何内容。没有 X 或 O,并且不会显示当前玩家的姓名。我一直在试图解决这个问题。我一直在寻找答案,据我所知,我所做的一切都是我应该做的。我今晚必须交
我是一名优秀的程序员,十分优秀!