簡體   English   中英

我的While循環不會停止

[英]My While Loop Won't Stop At Condition

我正在運行一個紙牌游戲,其中兩個玩家輪流撿紙牌,並且玩家前進了許多個空格。 在這種情況下,一旦任一位玩家的數字達到25或更大,他們就會擊中主屏幕,並且游戲應該停止。

//This is the function that plays the entire game
    void play(int size, int &player1, int &player2, int cardPile[], int board[]){
        displayRules();

        while(player1 < 25 || player2 < 25){
        cout << "\nPlayer 1's turn!" << endl;
        takeTurn(size, player1, cardPile, board, player2);
        showState(player1, player2);
        cout << "\nPlayer 2's turn!" << endl;
        takeTurn(size, player2, cardPile, board, player1);
        showState(player1, player2);
        }

    }

即使我已經設置了要在玩家1的值小於25或玩家2的值小於25時循環的條件,我的while循環仍然在兩個玩家都擊中25之后繼續循環。

#include <iostream>
#include <cstdlib>
#include <cmath>

using namespace std;

void play(int size, int &player1, int &player2, int cardPile[], int board[]);
void displayRules();
int takeTurn(int size, int &player, int cardPile[], int board[], int &opposingPlayer);
int shuffleDeck(int size, int cardPile[]);
int switchPlaces(int &player, int &opposingPlayer);
int obstacles(int &player, int board[]);
void showState(int &player1, int &player2);
void youWin(int &player1, int &player2);


int main()
{
    const int size = 10;
    int board[] = {0, 1, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 3, 0, 0, 0, 2, 0, 0, 0, 1, 0, 0, 0, 0, 0};
    int cardPile[size] = {1, 1, 2, 2, 3, 3, 4, 4, 0, 5};
    int player1 = 0;
    int player2 = 0;

    play(size, player1, player2, cardPile, board);
    return 0;
}

//This is the function that plays the entire game
void play(int size, int &player1, int &player2, int cardPile[], int board[]){
    displayRules();

    while(player1 < 25 || player2 < 25){
    cout << "\nPlayer 1's turn!" << endl;
    takeTurn(size, player1, cardPile, board, player2);
    showState(player1, player2);
    cout << "\nPlayer 2's turn!" << endl;
    takeTurn(size, player2, cardPile, board, player1);
    showState(player1, player2);
    }

}

//This function does a single turn for each player
int takeTurn(int size, int &player, int cardPile[], int board[],int &opposingPlayer){
    shuffleDeck(size, cardPile);
    int i = 0;
    if(cardPile[i] == 0)
        cout << "You drew a Lose a turn card! You lose a turn!" << endl;

    else if(cardPile[i] == 5)
        cout << "You drew a Switch Places card! You must switch places with the other player!" << endl,
        switchPlaces(player, opposingPlayer);

    else
    cout << "You drew a " << cardPile[i] << "!";
        switch(cardPile[i]){
        case 1:
            cout << " Move forward " << cardPile[i] << " space on the board!" << endl;
            player += cardPile[i];
            obstacles(player, board);
            break;
        case 2:
            cout << " Move forward " << cardPile[i] << " spaces on the board!" << endl;
            player += cardPile[i];
            obstacles(player, board);
            break;
        case 3:
            cout << " Move forward " << cardPile[i] << " spaces on the board!" << endl;
            player += cardPile[i];
            obstacles(player, board);
            break;
        case 4:
            cout << " Move forward " << cardPile[i] << " spaces on the board!" << endl;
            player += cardPile[i];
            obstacles(player, board);
            break;

        }

}

//This function shuffles the deck of cards
int shuffleDeck(int size, int cardPile[]){

    srand(time(0));
    for(int i = 0; i < size; i++){
            int index = rand() % size;
            int temp = cardPile[i];
            cardPile[i] = cardPile[index];
            cardPile[index] = temp;
    }

}


//This is the function that tells a player when they have ran into an
//obstacle and moves them back the appropriate number of spaces
int obstacles(int &player, int board[]){
    if(player == 1)
        player -= 1,
        cout << "You ran into an obstacle! Move back 1 space!" << endl;
    else if(player == 4)
        player -= 1,
        cout << "You ran into an obstacle! Move back 1 space!" << endl;
    else if(player == 8)
        player -= 2,
        cout << "You ran into an obstacle! Move back 2 spaces!" << endl;
    else if(player == 12)
        player -= 3,
        cout << "You ran into an obstacle! Move back 3 spaces!" << endl;
    else if(player == 16)
        player -= 2,
        cout << "You ran into an obstacle! Move back 2 spaces!" << endl;
    else if(player == 20)
        player -= 1,
        cout << "You ran into an obstacle! Move back 1 space!" << endl;
}

while循環條件在哪里出錯?

編輯:這是我運行的測試之一的一些輸出。

Welcome to GoHome! The main objective of this game is to reach Home first.
The basic rules of the game are as follows:

-To begin the player with the shortest name goes first.
-Each player picks a card that has a number on it and the player must moves forward that many number of spaces.
-If a card says 'Lose A Turn', the player does nothing and theturn moves to the next player.
-If a card says 'Switch Places', that player is allowed to switch places with any player on the board.
-If a player lands on an obstacle, that player must move back that many number of spaces.
-If a player lands another obstacle while moving backwards, then it does not have to move backwards again.

0
0

Player 1's turn!
You drew a 3! Move forward 3 spaces on the board!

Player 1 is on spot 3 of the board.
Player 2 is at Start!


Player 2's turn!
You drew a 4! Move forward 4 spaces on the board!
You ran into an obstacle! Move back 1 space!

Player 1 is on spot 3 of the board.
Player 2 is on spot 3 of the board.

3
3

Player 1's turn!
You drew a 1! Move forward 1 space on the board!
You ran into an obstacle! Move back 1 space!

Player 1 is on spot 3 of the board.
Player 2 is on spot 3 of the board.


Player 2's turn!
You drew a 3! Move forward 3 spaces on the board!

Player 1 is on spot 3 of the board.
Player 2 is on spot 6 of the board.

3
6

Player 1's turn!
You drew a 4! Move forward 4 spaces on the board!

Player 1 is on spot 7 of the board.
Player 2 is on spot 6 of the board.


Player 2's turn!
You drew a 1! Move forward 1 space on the board!

Player 1 is on spot 7 of the board.
Player 2 is on spot 7 of the board.

7
7

Player 1's turn!
You drew a 3! Move forward 3 spaces on the board!

Player 1 is on spot 10 of the board.
Player 2 is on spot 7 of the board.


Player 2's turn!
You drew a 4! Move forward 4 spaces on the board!

Player 1 is on spot 10 of the board.
Player 2 is on spot 11 of the board.

10
11

Player 1's turn!
You drew a 1! Move forward 1 space on the board!

Player 1 is on spot 11 of the board.
Player 2 is on spot 11 of the board.


Player 2's turn!
You drew a 3! Move forward 3 spaces on the board!

Player 1 is on spot 11 of the board.
Player 2 is on spot 14 of the board.

11
14

Player 1's turn!
You drew a 4! Move forward 4 spaces on the board!

Player 1 is on spot 15 of the board.
Player 2 is on spot 14 of the board.


Player 2's turn!
You drew a 1! Move forward 1 space on the board!

Player 1 is on spot 15 of the board.
Player 2 is on spot 15 of the board.

15
15

Player 1's turn!
You drew a 3! Move forward 3 spaces on the board!

Player 1 is on spot 18 of the board.
Player 2 is on spot 15 of the board.


Player 2's turn!
You drew a 4! Move forward 4 spaces on the board!

Player 1 is on spot 18 of the board.
Player 2 is on spot 19 of the board.

18
19

Player 1's turn!
You drew a 1! Move forward 1 space on the board!

Player 1 is on spot 19 of the board.
Player 2 is on spot 19 of the board.


Player 2's turn!
You drew a 3! Move forward 3 spaces on the board!

Player 1 is on spot 19 of the board.
Player 2 is on spot 22 of the board.

19
22

Player 1's turn!
You drew a 4! Move forward 4 spaces on the board!

Player 1 is on spot 23 of the board.
Player 2 is on spot 22 of the board.


Player 2's turn!
You drew a 1! Move forward 1 space on the board!

Player 1 is on spot 23 of the board.
Player 2 is on spot 23 of the board.

23
23

Player 1's turn!
You drew a 3! Move forward 3 spaces on the board!

Player 1 is on spot 26 of the board.
Player 2 is on spot 23 of the board.


Player 2's turn!
You drew a 4! Move forward 4 spaces on the board!

Player 1 is on spot 26 of the board.
Player 2 is on spot 27 of the board.

好吧,您的條件為“當player1小於25或player2小於25時,請執行循環中的操作”。 但這絕對不是您想要的。 只需更改:

while(player1 < 25 || player2 < 25){

while(player1 < 25 && player2 < 25){

我想會做的工作。

從邏輯上講 ,這與德摩根定律有關。

另外,請記住,要使程序在任一玩家達到25歲時終止,您必須在每個回合之后(即在每個takeTurn調用之后)詢問。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM