如何让玩家按任意键继续?

时间:2014-03-19 05:15:40

标签: c++ user-input

我想让玩家按任意键继续游戏,但不知道如何。这是我到目前为止的代码:

#include <iostream>
#include <string>

using namespace std;

int main()
{
    cout << "\t\tWelcome to my first game, A Hero's Journey!\n\n";
    char response;
    cout << "\t\t\tPress any key to continue!: \n\n";
    cin >> response;
    if (response == 
    return 0;
}

我目前正在研究if语句,所以请不要理会,除非我决定玩家是否按下了某些东西。

1 个答案:

答案 0 :(得分:1)

不需要if条件,因为cin将始终等待输入。如果您要求用户输入特定密钥,则需要if条件来检查它。