ねえ、C++でゲームを作っています。それは大学の仕事であり、簡単な説明ではヘッダーファイルを使用しないと述べており、ゲームは基本的なものでなければなりません。問題は、ゲームが終了した後もまだ選択を求めていることです。私は壊れて出ようとしましたが、それでも喜びはありません。プログラムは終了しません。誰かがこれを手伝ってくれますか?
これが私のコードです:メイン
int main() // The main function is set to int.
// The return value has to be an integer value.
{
menuText();
while(menu) // Loop to revert back to menu when choice is not compatable with options.
{
int selection;
cout<< "Choice: ";
cin>> selection;
switch(selection)
{
case 1:
cout << "Start Game\n";
playGame();
break;
case 2:
cout << "Exit Game\n";
cout << "Please press enter to exit...\n";
menu = false ;
break;
}
}
system("pause"); // To stop the program from exiting prematurely.
return 0; // this is needed because the main is set to return
// an integer.
}
int playgame()
status Status = {100,20,80,80,20};// declaration of class members.
//Contents of PlayGame().............................
exitGame();
return 0;
}
void exitGame()
{
cout << "\n\nPlease press enter to exit the game.";
return;
}