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語句,所以忽略,除非這就是我決定玩家是否已經按下的東西。
可能重複的[如何模擬「按任意鍵繼續?」](http://stackoverflow.com/questions/1449324/how-to-simulate-press-any-key-to-continue) – Brian