You can use \n after or before the text in quote. ex. cout << " 1 for addition!\n"; or cout << "\n 1 for addition!";. Or use cout << endl << " 1 for addition!"; or cout << " 1 for addition!" << endl;.
You're very welcome. And there is no reason to apologize, for we all get a bit confused in programming, one time or another. I'm just glad that we both weren't confused at the same time... ;)
For a better understanding of why you need a newline character, do a little research on output streams. Or the ostream library of C++. I find it always helps to know WHY you have to do something, not just that you have to do it.