有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

TictoeJava游戏并没有结束

当运行此代码时,游戏从不宣布赢家或平局,它会不断要求下一个玩家移动

示例输出:

Choose a position to play
1 | 2 | 3
---------
4 | 5 | 6
---------
7 | 8 | 9
Player X (Enter a position or -1 to resign): 1

Choose a position to play.
1 | 2 | 3
---------
4 | 5 | 6
---------
7 | 8 | 9
Player O (Enter a position or -1 to resign): 1

它不会改变字符的空格数,甚至不会记住它来宣布胜利者

这是我代码的runStandardGame()部分,我想问题就在这里

//***RUN STANDARD GAME******************************************************

static void runStandardGame() {

    int position = QUIT;
    char playerChar = 'X';
    boolean isGameOver = false;

    fillPosition();

    System.out.println("Choose a position to play.\n");


    displayGrid();

    do {
        System.out.print("Player " + playerChar +
                         " (Enter a position or " + QUIT + " to resign): ");
        position = keyboard.nextInt();

        System.out.println("Choose a position to play.\n");

        displayGrid();


        if(isWin()) {
            System.out.print("\nPlayer " + playerChar + " WINS!!!\n");
            isGameOver = true;
        }
        else if (isTie()) {
            System.out.print("\nTIE.\n");
            isGameOver = true;
        }
        else {
            //switch players because one of the players has just played
            //and not won;, so, it is the other player's turn
            if (playerChar == 'X') {
                playerChar = 'O';
            }
            else{
                playerChar = 'X';
            }
        }
    }while(!isGameOver && position != QUIT);

}//end of runStandardGame

或者甚至可能只是扮演角色,因为这是分配给数组的地方

//***PLAY*******************************************************************    

static void play(int cell, char playerChar) {
    //the player has entered a number 1 through 9 for the position they want
    //to play, so, figure out which row and which column of the array this is
    //For example, if the player wants to play 'X' in position 7, this means
    //the 'X' must go into row 2, column 0 of the array
    int row = 0;
    int column = 0;

    if (cell > 0 && cell <= (STANDARD_GRID_ROWS * STANDARD_GRID_COLUMNS)){
        row = (cell - 1) / STANDARD_GRID_ROWS;
        column = (cell - 1) % STANDARD_GRID_COLUMNS;
        grid[row][column] = playerChar;
    }
}

感谢您的帮助。多谢各位


共 (2) 个答案

  1. # 1 楼答案

    在我看来

    position = keyboard.nextInt();
    

    在显示并继续之前,需要对位置做些什么(将其写入电路板)

  2. # 2 楼答案

    我看到你正在使用

    position = keyboard.nextInt();
    

    但我没看到你真的在打电话给

    play(position, playerChar);