C++ 函数在不应该调用时被调用

标签 c++ function

我快要完成一个小型猜谜游戏了,但我遇到了一个我不知道如何解决的问题。

问题出在 check_guess 函数上,该函数正在检查以确保输入的猜测是 1 到 100 之间的数字。

第一次运行程序时,一切正常。

http://i.imgur.com/pprunDT.png (如果我的声誉不那么低,我会发布图片)

但每次之后,如果选择是再次播放,程序会运行 check_guess 函数并在不应该显示“无效输入”时显示“输入无效”

http://i.imgur.com/8OSnSJt.png

我不确定程序为什么会这样。

整个程序的代码在这里:

#include <iostream>
#include <cstdlib>      //for rand
#include <ctime>            //for time
#include <string>
#include <sstream>      //for conversions from string to int

using namespace std;

int check_guess(int tries) { //function for limiting the input of guess
    string guess = "";
    int result = 0;

    do {
        getline (cin, guess);

        istringstream convert(guess);
        if ( !(convert >> result) || (result < 1 || result > 100) ) {
            result = 0;
            cout << "Invalid Input.\n" << endl;
            cout << "You have " << tries << " tries: ";
        }
    } while (result == 0);

    return result;
}

bool play_again() { //function for limiting the input of mode
    bool quit;
    string yn;
    do {
        cin >> yn;
        if          ( yn == "y" || yn == "yes" ) {
                        quit = false;
        }
        else if ( yn == "n" || yn == "no" ) {
                        quit = true;
        }
        else { 
            yn = "invalid";
            cout << "Invalid input.\n\nEnter 'y' or 'n': ";
        }
    } while ( yn == "invalid" );
    return quit;
}

int main()
{
    srand(time(0));         //sets seed to be random
    int mystery = 0;        //defines mystery number
    int guess = 0;          //defines guess
    int tries = 5;          //defines trys
    bool quit = false;  //defines replay or quit

    cout << "----------------------------------\n";

    do  {                                               //while mode is not set to quit, keep     playing
        tries = 5;                                  //resets tries each new game
        mystery = rand() % 100 + 1; //sets mystery number to be random
        guess = 0;
        cout << "Pick a number between 1 and 100.\n\nYou have 5 tries: ";

        while (tries != 0) {                //loops until you have no tries left
            guess = check_guess(tries);

            if (guess == mystery) { tries = 0; }    //if you guess right it ends the loop
            else                                  { tries--; }      //guessing wrong lowers tries by 1

            if ( tries != 0 && guess > mystery) {
                cout << guess << " is too high.\n" << endl;
                cout << "You have " << tries << " tries: ";
            }
            if ( tries != 0 && guess < mystery) {
                cout << guess << " is too low.\n"  << endl; 
                cout << "You have " << tries << " tries: ";
            }   
        }


        if (guess == mystery) {     //if guess == mystery by time loop ends you win
            cout << "Got it! You Win!\n" << endl;
        }
        else {                                      //if not, you lose
            cout << "You Lose! The number was: " << mystery << ".\n" <<endl;
        }

        cout << "-------------------\n";
        cout << "Play Again?(y/n): ";   //ask user to play again
        quit = play_again();
        cout << "-------------------\n";
        if (quit == false)
            cout << endl;
    } while (quit == false);

    cout << "----------------------------------" << endl;
    return 0;
}

我不确定如何解决这个问题。

最佳答案

这一行:

cin >> yn;

只读取 'y' 但不读取行尾。结果,接下来执行这条指令

getline (cin, guess);

将猜测初始化为一个空字符串。

关于C++ 函数在不应该调用时被调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26493623/

相关文章:

c++ - 如何动态创建未定义大小的对象?

c++ - 抛出异常时使用 cout 语句尝试阻止行为

r - 获取字符串形式的函数名称

python - 如何同时运行两个函数

Javascript onclick 函数不执行(错误日志 - 未定义)

Python:递归函数的基本情况

javascript - 为什么当调用 apply() 或 call() 时 'this' 指向函数内的 window ?

c++ - 没有 typedef 的函数指针

c++ - 使用 C/C++ 自动化 Internet Explorer

c++ - 函数重载和读取 fdump-tree-all 输出