-2

「1」を押してゲームを開始すると、ゲームをプレイする代わりにエラーメッセージが最初に表示され、ゲームが開始する前に「1」を3回入力する必要があり、ゲームを終了するオプションは最初に「2」を選択した場合にのみ機能します最初に選択されていない場合、エラーメッセージが表示されるだけです。なぜこれができるのかわかりません。誰か助けてください。

#include "Questions.h"
#include <iostream>
using namespace std;

const int MAXITEMS = 10;

int main ()
{
    string question[MAXITEMS] = {"How man cards in a suit",
      "How_many_suits_are_there_in_a_standard_pack_of_card",
      "How_many_kings_are_in_a_standard_pack_of_cards"};
    string answers[MAXITEMS] = {"4", "5", "6"};

    int userInput = 0;
    int tries = 0;


    bool isGameOver = false;

    cout << "select 1 to start game" << endl;  //gives option to start and quit game
    cout << "select 2 to quit game" << endl;
    cin >> userInput;

    if (userInput == 2)
    {
        isGameOver = true;
        return 0;   
    };
    // when game starts gives option to select question and shows all questions
    do
    {
        if (userInput != 1||2)
        {
            cout << " Your input is not valid! please try again:" << endl; 
                          // try switch cases for the different outcomes

            cout << "select 1 to start game" << endl;  
            cout << "select 2 to quit game" << endl;
            cin >> userInput;

            while (!(cin >> userInput))
            {
                cin.clear(); // clear the error flags
                cin.ignore(INT_MAX, '\n'); // discard the row
                cout << "Your input is not valid! please try again: ";

                cout << "select 1 to start game" << endl;  
                cout << "select 2 to quit game" << endl;
            }
            cout << userInput << endl;



        }
        // reprisent all characters as number to stop while roblem

        if(userInput == 1)
        {
            do
            {
                cout << "select question" << endl;

                for(int i = 0; i != MAXITEMS; i++)
                {
                    cout << i << " " << question[i] << endl;
                }

                int selectQestion;
                cin >> selectQestion;

                if(selectQestion == 0||1||2  && tries != 2)
                {
                    cout << "Enter your answer" << endl;
                    string userAnswer;

                    cin >> userAnswer;

                    while (!(cin >> userAnswer))
                    {
                        cin.clear(); // clear the error flags
                        cin.ignore(INT_MAX, '\n'); 
                                                        // discard the row
                        cout << "Your input is not valid!
                                                                  please try again: ";
                    }

                    if (userAnswer == answers[0])
                    {
                        cout << "Correct answer" << endl;
                    }
                    else{

                        cout << "incorrect try again" << endl;
                        tries++;

                        cin >> userAnswer;
                        if (userAnswer == answers[0])
                        {
                        cout << "Correct answer" << endl;
                        }
                        else 
                        cout << "Incorrect" << endl;

                    }
                }
                if (selectQestion == 0 ||1 ||2  && tries == 2)
                {
                cout << "you can no longer answer this question" << endl;
                cout << "try another question" << endl;
                }

            }
            while(userInput == 1);

        }
        }
    while(isGameOver == false);

}
// add stuct or class to handle questions, 
4

2 に答える 2

3

if (userInput != 1||2)あなたが思うようにはしません。適切な括弧を挿入すると、

if ((userInput != 1) || 2)

および2は非ゼロであるため、条件は常に真です。

あなたがしたい

if (userInput != 1 && userInput != 2)
于 2013-04-26T22:22:25.920 に答える
3

問題はここにあります:

if (UserInput!=1||2)

この行には、次の 2 つの条件があります。

UserInput!=1 , 2

ここで、ユーザー入力が 1/2 であるかどうかにかかわらず、2 番目の条件 2は常に として評価されtrue、if ブロックを実行します。

だからそれを

if (UserInput!=1 && UserInput!=2) 
于 2013-04-26T22:24:58.580 に答える