- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是一名初学者,正在学习 Java super 技能类(class)。我试图尝试 this VS Code 中的 tic tac toe 游戏项目。效果很好。但代码在提交时出错。
代码:
package tictactoe;
import java.util.*;
public class Main {
public static int movesCommitted = 0;
static String[][][] matrix = {{{" ", "13"}, {" ", "23"}, {" ", "33"}},
{{" ", "12"}, {" ", "22"}, {" ", "32"}},
{{" ", "11"}, {" ", "21"}, {" ", "31"}}};
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
boolean drawCounter = true;
board(matrix);
do {
String symbol = (movesCommitted % 2 == 0) ? "X" : "O";
validateAndAppend(symbol, scanner); // Validate for wrong input and filled spots
board(matrix); // Display board
movesCommitted++;
if (anyWinner(symbol)) {
drawCounter = false;
System.out.println(symbol + " wins");
break;
}
} while (movesCommitted < 9);
if (drawCounter) {
System.out.println("Draw");
}
}
public static void board(String[][][] arr) {
System.out.println("---------");
System.out.println("| " + arr[0][0][0] + " " + arr[0][1][0] + " " + arr[0][2][0] + " |");
System.out.println("| " + arr[1][0][0] + " " + arr[1][1][0] + " " + arr[1][2][0] + " |");
System.out.println("| " + arr[2][0][0] + " " + arr[2][1][0] + " " + arr[2][2][0] + " |");
System.out.println("---------");
}
public static void validateAndAppend(String symbol, Scanner scanner) {
boolean cont = true;
do {
System.out.print("Enter coordinates: ");
String inp = scanner.nextLine(); // Input move
int dataInput;
String input = "0" + inp;
input = input.replace(" ", "");
if (Integer.parseInt(input) < 11) {
System.out.println("You should enter numbers!");
continue;
} else {
dataInput = Integer.parseInt(input);
}
int unit = dataInput % 10;
int tens = dataInput / 10;
if (unit < 1 || unit > 3 || tens < 1 || tens > 3) {
System.out.println("Coordinates should be from 1 to 3!");
continue;
// break;
}
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
if (matrix[i][j][1].toString().equals(String.valueOf(dataInput))) {
if (matrix[i][j][0] == " ") {
matrix[i][j][0] = symbol;
cont = false;
} else {
System.out.println("This cell is occupied! Choose another one!");
}
}
}
}
} while (cont);
}
public static Boolean anyWinner(String xo) {
if (movesCommitted < 5) {
return false;
}
for (int i = 0; i <= 2; i++) {
if (matrix[i][0][0] == xo && matrix[i][1][0] == xo && matrix[i][2][0] == xo) {
return true; // This is row check
}
if (matrix[0][i][0] == xo && matrix[1][i][0] == xo && matrix[2][i][0] == xo) {
return true; // This is column check
}
}
if (matrix[0][0][0] == xo && matrix[1][1][0] == xo && matrix[2][2][0] == xo) {
return true; // This is "\" diagonal check
}
if (matrix[0][2][0] == xo && matrix[1][1][0] == xo && matrix[2][0][0] == xo) {
return true; // This is "/" check
}
return false;
}
}
错误:
Exception in test #2
Probably your program run out of input (Scanner tried to read more than expected). If you are sure it's not, this type of exception also happens if you created more than one Scanner object (it is preferred to use a single Scanner in program).
java.util.NoSuchElementException: No line found
at java.base/java.util.Scanner.nextLine(Scanner.java:1651)
at tictactoe.Main.validateAndAppend(Main.java:44)
at tictactoe.Main.main(Main.java:16)
Please find below the output of your program during this failed test.
Note that the '>' character indicates the beginning of the input line.
---
---------
| |
| |
| |
---------
Enter coordinates: >4 1
Coordinates should be from 1 to 3!
Enter coordinates: >3 1
This cell is occupied! Choose another one!
Enter coordinates: >4 4
Coordinates should be from 1 to 3!
Enter coordinates: >2 2
This cell is occupied! Choose another one!
原始错误很长(输入)。错误似乎出在 validateAndAppend() 方法中,程序无法区分网站上的错误输入和正确输入。
最佳答案
我认为网站的输入测试导致扫描String inp
出现问题。
您收到的错误(java.util.NoSuchElementException:未找到行
)是由于扫描仪未找到下一行,因此在将输入添加到之前尝试检查是否存在任何行inp
:
System.out.print("Enter coordinates: ");
String inp="$";
if(scanner.hasNextLine()) // Check if next line exists
inp=scanner.nextLine(); // Input move
if(inp.equals("$")) // If inp did not change show an error and input again
{
System.out.println("Input error");
continue;
}
编辑
这是另一种可以帮助您的方法:
System.out.print("Enter coordinates: ");
String inp=null;
try
{
inp=scanner.nextLine();
} catch(Exception e)
{
return;
}
int dataInput;
// rest of you code
关于Java Tic Tac Toe 游戏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60789825/
我是初学者,所以我的代码很乱。我还没有完整地评论这个游戏,所以如果你需要澄清一些变量,我可以给你。 (顺便说一句,这是一个要求制作井字游戏的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,并且不会显示当前玩家的姓名。我一直在试图解决这个问题。我一直在寻找答案,据我所知,我所做的一切都是我应该做的。我今晚必须交
我是一名优秀的程序员,十分优秀!