2014-03-19 57 views
0

我想讓玩家按任意鍵繼續遊戲,但不知道如何。這裏是我到目前爲止的代碼:如何讓玩家按任意鍵繼續?

#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語句,所以忽略,除非這就是我決定玩家是否已經按下的東西。

+0

可能重複的[如何模擬「按任意鍵繼續?」](http://stackoverflow.com/questions/1449324/how-to-simulate-press-any-key-to-continue) – Brian

回答

1

由於cin總是等待輸入,因此不需要if條件。如果你需要用戶輸入一個特定的密鑰,那麼你需要一個if條件來檢查它。

+0

謝謝對於這些信息,我曾經這麼做過,但這些年來變得非常生疏。 –

相關問題