For Loop solution

int Limit = 5;
for (int count = 0; count < Limit; ++count)
{
	GetGuessAndPrintBack();
}

Privacy & Terms