Do-While Challenge

// the entry point for our application
int main()
{
	do {
		PrintIntro();
		PlayGame();
	} while (AskToPlayAgain());

	return 0; // exit the application
}
1 Like

Privacy & Terms