My Take on the For Loop

int main()
{

PrintIntro();

constexpr int TOTALTURNS = 5;

for (int count = 1; count <= TOTALTURNS; count++)
{
	cout << "Your guess was: " << GetGuess() << endl;
}


return 0;

}

Privacy & Terms