当前位置:  开发笔记 > 编程语言 > 正文

C++ if/else if语句无法正常工作

如何解决《C++if/elseif语句无法正常工作》经验,为你挑选了1个好方法。

我正在尝试编写一个类似游戏的冒险程序,我需要if else语句才能正常工作.但是,每当我运行if if语句时,它都不会输出我想要的内容.

#include 

using namespace std;

int main()
{
    while(true)
    {
        cout << endl << "What will you do?: ";
        string input;
        cin >> input;
        if (input == "Nothing" || input == "nothing")
            {
                cout << "Why would you do nothing?" << endl;
            }
            else if (input == "Look North" || input == "Look north" || input == "look North" || input == "look north")
            {
                cout << "You look north. There is nothing north." << endl;
            }
    }
}

我期望它输出的是:

What will you do?: nothing
Why would you do nothing?

What will you do?: look north
You look north. There is nothing north.

What will you do?:

但是当我把它们作为输入时,我没有得到它,我得到了这个:

What will you do?: nothing
Why would you do nothing?

What will you do?: look north

What will you do?:
What will you do?:

我想在解决这个问题上提供一些帮助,因为我无法找到为什么会发生这种情况的答案.



1> R Sahu..:
cin >> input;

不读空格.你需要使用std::getline.

getline(cin, input);

推荐阅读
Life一切安好
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有