I attempted to separate the two parts of GetGuessAndPrintBack() into two different functions called GetGuess() and PrintBackGuess().
I created prototypes for each, a string for GetGuess() and a void for PrintBackGuess().
Now, when I run the code, it will GetGuess() but it will only PrintBackGuess() every other time I enter one. I’m thinking that maybe I need to change the prototype to string for the PrintBackGuess, and set the cout to a string and return said string.
So something like: string GuessSaver << "Your guess was: " << Guess << endl;
return Guess Saver;
Anywho, off to try and make this work.