This doesn't work:
string temp;
cout << "Press Enter to Continue";
cin >> temp;
|
|
or, better:
A succinct answer for an equally succinct question. |
|||||||||
|
|
Replace your
http://www.cplusplus.com/reference/iostream/istream/get/
|
|||
|
|
|
Try:
or, better yet:
I think the string input will wait until you enter real characters, not just a newline. |
|||
|
|
|
Try using std::cin.get() rather than std::cin::operator<<() EDIT: Others were faster. Billy3 |
|||
|
|