- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
我的方法 entreeIncorrecte
用于检查用户输入。如果 ligne
和 colonne
的值不是“0”、“1”、“2”或“3”,我想打印出用户是不正确并重新启动 entreeIncorrecte
的循环。如果我为行和列输入“e”和“3”,编译器会给我:
Exception in thread "main" java.lang.NumberFormatException: For input string: "e" at java.base/java.lang.NumberFormatException.forInputString(NumberFormatException.java:65) at java.base/java.lang.Integer.parseInt(Integer.java:652) at java.base/java.lang.Integer.parseInt(Integer.java:770) at td.Main.verifierEntree(Main.java:200) at td.Main.jouerUnePartie(Main.java:152) at td.Main.plusieursParties(Main.java:103) at td.Main.main(Main.java:32)
有什么办法吗?
N.B.:由于我住的地方,代码必须按照惯例用法语为我的变量、方法等编写,如有任何混淆,请提前致歉。这是我的代码:
package td;
import java.util.Random;
import java.util.Scanner;
public class Main {
// Initialisation des variables
public static String ligne, colonne;
public static Scanner scan;
public static char[][] tableau = new char[4][4];
public static char tourJoueur = 'O';
public static Random rand;
public static int scoreJ1;
public static int scoreJ2;
public static String nomJoueur1;
public static String nomJoueur2;
public static void main(String[] args) {
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
tableau[i][j] = ' ';
// Introduction avant les jeux
menuIntroduction();
// Toutes les parties
plusieursParties();
// Message final
menuFin();
}
}
}
private static void menuIntroduction() {
printIntro();
scoreJ1 = 0;
scoreJ2 = 0;
// Initialisation du Scanner
scan = new Scanner(System.in);
// Recuperation des noms des joueurs
System.out.println("Joueur 1 rentrez votre nom");
nomJoueur1 = scan.nextLine();
System.out.println("Joueur 2 rentrez votre nom");
nomJoueur2 = scan.nextLine();
// Choix du premier joueur au hasard
Random rand = new Random();
if (rand.nextInt() % 2 == 0) {
tourJoueur = 'O';
} else {
tourJoueur = 'X';
}
}
private static void printIntro() {
System.out.println("BIENVENU AU TIC TAC TOE!\n");
System.out.println("Chaque joueur se fera assigner 'X' ou 'O'\n");
System.out.println("Chaque joueur selectionnera une case dans le Tic Tac Toe.\n");
System.out.println(
"Il faudra selectionner une ligne (de 0-3) et peser sur ENTER. Il faudra ensuite selectionner une colonne et peser sur ENTER\n");
System.out.println("Chaque joueur se fera assigner 'X' ou 'O', débutant par le joueur 1\n");
System.out.println(
"Pour gagner, il faudra compléter une ligne du tableau avec 'X' ou 'O', soit verticalement, soit horizontalement, soit diagonalement\n");
System.out.println("Si le tableau est plein et qu'aucun joueur n'a fait de ligne, la partie sera nulle\n");
System.out.println("Chaque partie gagnée donnera un point au joueur vainqueur\n");
System.out.println("Bonne partie!");
System.out.println();
System.out.println("========================================================\n\n\n");
}
private static void menuFin() {
System.out.println("=========================FIN DU JEU=========================\n\n\n");
System.out.println("merci à " + nomJoueur1 + " et " + nomJoueur2 + " d'avoir joué ! ");
// message de fin different selon le joueur gagnant ou s'il y a égalité
if (scoreJ1 > scoreJ2) {
System.out.println(nomJoueur1 + " l'emporte à " + scoreJ1 + " contre " + scoreJ2);
} else if (scoreJ2 > scoreJ1) {
System.out.println(nomJoueur2 + " l'emporte à " + scoreJ2 + " contre " + scoreJ1);
} else {
System.out.println("Égalité! " + scoreJ1 + " point(s) au total!");
}
System.out.println("\n\n\n\nÀ bientôt!");
}
private static void plusieursParties() {
do {
jouerUnePartie(tourJoueur);
} while (onContinue());
}
private static boolean onContinue() {
boolean inputContinue = false;
boolean entreeIncorrecte = true;
// tant que l'utilisateur ecrit n'importe quoi on lui redemande de faire un
// choix
do {
System.out.println("les scores sont : ");
System.out.println(nomJoueur1 + " : " + scoreJ1 + " ||| " + nomJoueur2 + " : " + scoreJ2);
System.out.println("voulez - vous continuer ? [Oui/Non]");
String reponseUser = scan.nextLine();
// cas un et deux reponse valide et transmise, cas trois le user dit n'importe
// quoi
if (reponseUser.equals("Oui")) {
inputContinue = true;
entreeIncorrecte = false;
} else if (reponseUser.equals("Non")) {
inputContinue = false;
entreeIncorrecte = false;
} else {
System.out.println("Erreur, entrez 'Oui' ou 'Non'");
entreeIncorrecte = true;
}
} while (entreeIncorrecte);
// on renvoie la reponse de l'utilisateur lorsqu'elle est valide
return inputContinue;
}
private static void jouerUnePartie(char tourJoueur1) {
System.out.println("C'est au tour de " + nomJoueur1 + "!" + "Tu joues " + tourJoueur + "!\n");
System.out.println("Entre une ligne et pèse sur ENTER");
System.out.println("Entre une colonne et pèse sur ENTER");
// Verifie si l'utilisateur utilise un chiffre et non quelque chose d'autre pour
// ligne et pour colonne
boolean jouant = true;
do {
afficherTableau();
verifierEntree();
} while (jouant);
{
int colonne2 = Integer.parseInt(colonne);
int ligne2 = Integer.parseInt(ligne);
tableau[ligne2][colonne2] = tourJoueur;
if (victoire(scoreJ1, scoreJ1) && !tableauPlein()) {
System.out.println("Felicitations! Le joueur " + tourJoueur + " gagne!");
jouant = false;
}
if (!victoire(ligne2, colonne2) && tableauPlein()) {
System.out.println("Partie nulle!");
jouant = false;
} else {
jouant = true;
}
if (tourJoueur == 'O') {
tourJoueur = 'X';
} else {
tourJoueur = 'O';
}
}
}
private static void verifierEntree() {
boolean entreeIncorrecte = true;
while (entreeIncorrecte) {
ligne = scan.nextLine();
colonne = scan.nextLine();
if (ligne.contentEquals("0")) {
}
if (ligne.equals("0") || ligne.equals("1") || ligne.equals("2") || ligne.equals("3")) {
entreeIncorrecte = false;
} else if (colonne.equals("0") || colonne.equals("1") || colonne.equals("2") || colonne.equals("3")) {
entreeIncorrecte = false;
} else {
System.out.println("Mauvaise entree! Recommence! ");
entreeIncorrecte = true;
}
if (!entreeIncorrecte) {
// Comment colonne2 et ligne2 ne sont pas utilisés?
int colonne2 = Integer.parseInt(colonne);
int ligne2 = Integer.parseInt(ligne);
} else {
}
}
}
private static boolean victoire(int ligne2, int colonne2) {
// Verifie horizontalement la victoire
if (tableau[0][colonne2] == tableau[1][colonne2] && tableau[0][colonne2] == tableau[2][colonne2]
&& tableau[0][colonne2] == tableau[3][colonne2])
return true;
// Verifie verticalement la victoire
if (tableau[ligne2][0] == tableau[ligne2][1] && tableau[ligne2][0] == tableau[ligne2][2]
&& tableau[ligne2][0] == tableau[ligne2][3])
return true;
// Verifie diagonalement vers la droite la victoire
if (tableau[0][0] == tableau[1][1] && tableau[0][0] == tableau[2][2] && tableau[0][0] == tableau[3][3]
&& tableau[1][1] != ' ')
return true;
// Verifie diagonalement vers la gauche la victoire
if (tableau[0][3] == tableau[1][2] && tableau[0][3] == tableau[2][1] && tableau[0][3] == tableau[3][0]
&& tableau[1][2] != ' ')
return true;
if (tableauPlein())
return true;
return false;
}
private static boolean tableauPlein() {
for (int i = 0; i < 4; i++) {
for (int j = 0; j < 4; j++) {
if (tableau[i][j] == ' ') {
// Un tour peut etre fait, tableau non vide
return false;
}
}
}
return true;
}
private static void afficherTableau() {
for (int i = 0; i < 4; i++) {
System.out.println();
for (int j = 0; j < 4; j++) {
if (j == 0) {
System.out.print(" |");
}
System.out.print(tableau[i][j] + " |");
}
}
System.out.println();
}
}
我只是有一个小问题。 我的计算机科学课的最后一项任务是用 JavaScript 编写一个井字游戏。游戏通过单击表格中的单元格并使用 function() 将 img 源(单击之前的空白图像)切换到 X
我几年前制作了一个 GUI TicTacToe 游戏,并想重做它,因为我现在有了更多的编程技能。我能够将代码从 600 行缩减到大约 150 行。 当我使用相同的方案时,我遇到了一些我无法解决的问题,
嘿,我正在制作一个 TicTacToe 游戏,它检查每个索引的值“x”或“o”,并且它一直给我错误 java.lang.ArrayIndexOutOfBoundsException: 3 第一个 if
这里是新程序员,正在 Eclipse 上使用 Java 编写 Tictactoe 游戏。 我认为我的获胜条件有问题。它出现了错误: 线程“main”中的异常 java.lang.NullPointer
我正在尝试创建一个执行 TicTacToe 游戏的程序。我已经创建完毕所有方法,我只需要创建驱动程序。在创建之前驱动程序,我试图只打印电路板和一个字符,但我没有认为我的方法是正确的。这是我的错误: j
对于这个程序,我正在创建一个棋盘,它将成为我必须构建的井字棋游戏的基础。这将是一个非常简单的程序,仅使用 java 的基础知识。目前,我无法让 setX() 和 setO() 方法正常工作。这正是我用
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
好的,我正在编写一个井字棋游戏。我已经写好了整个程序,但我不明白为什么它不能正确显示? import java.util.Scanner; public class TicTacToeGame {
我的教授希望这段代码打印出井字游戏板,但我不完全确定从这里做什么。这是我尝试过的: public static void main(String[] args) { Scanner keybo
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我构建了一个简单的井字游戏并且运行良好。我想实现一个重置按钮和一个领带功能,但我似乎无法围绕它包装我的代码。 我知道使用 location.reload 重置很容易,但我不知道在我的 jquery 中
我正在尝试编写一个函数来查找 tictactoe 的获胜者状态。但是,我有一个错误,我找不到它。当我通过控制台粘贴输入值时,它会关闭终端并且不接受输入的最后一部分(O X O)。你能告诉我我的错在哪里
我正在使用 Java Swing 实现一个 TicTacToe GUI 应用程序。当前获胜的逻辑是: JButton[] button = new JButton[9]; boolean win =
我正在使用 JavaScript 和 JQuery 创建一个 TicTacToe 游戏,但按钮显示不正确,因为我无法确定 breakLine 我通过 reddit 尝试了几种不同的解决方案,但都没有用
我目前正在为大学作业制作一个 TicTacToe 程序。我的板上布置了 3x3 JTextFields,每个都有一个 Action 监听器。我需要做的是创建另一个类来检查错误(例如,用户将输入一个数字
我正在尝试创建 TicTacToe 游戏,但想问一个问题。我有一个 2d char 数组,现在用下划线填充 - '_'。我的问题是如何每行输出三个下划线?提前致谢! import java.util.
我正在尝试与两名玩家一起制作井字游戏。我很远,它在大多数情况下都有效。我不知道如何打印出存储在数组中的字符串。我已经看到很多循环作为示例。请让我知道发生了什么。 在此输入验证码 int mai
我正在尝试学习 C++,并且我制作了小的 tictactoe 游戏,但出了点问题。我试图让 winner 类既是 void 又是 bool。但是,当我输入一个坐标时,它会执行该课程。为了简单起见,
你好,我正在自己做一个井字游戏项目。我没有上编程课,所以这不是家庭作业。 我几乎已经编写了其余代码,现在正在研究 AI。 对于 AI,我将让它复制(二维数组)并检查它是否可以在一步中获胜,如果玩家可以
我有一个允许 2 位玩家玩 TicTacToe 的程序。在每个玩家移动之后,它应该在那个点显示棋盘并返回一个名为 Status 的枚举,显示玩家是否应该继续,如果玩家赢了,还是平局。但是,该算法要么返
我是一名优秀的程序员,十分优秀!