Hello! Here’s my loop.
I don’t use the namespaces now because I want to know what comes from the libraries I imported, and what doesn’t.
int main()
{
PrintMainTitle();
PrintIntro();
constexpr int MaxGuesses = 5;
int GuessCount = 1;
for (GuessCount; GuessCount <= MaxGuesses; ++GuessCount)
{
GetGuessAndPrintBack();
std::cout << std::endl << std::endl;
}
std::cout << std::endl;
return 0;
}