I'm writing a little c++ console program to improve my programming and to begin a portfolio. My question is:
How do I continue my story after the else statement?
Part of the code I have is:
else {
cout << "That's not an answer mate!" << endl;
}
How do I make the program NOT exit, but ask for a new input from the user?
Thanks in advance!
while