Hello. I would like to have my program pause at a certain screen but not to have the "Press any key to continue..." message or the press of a button. In my program, the code looks similar to this:
1 2 3 4 5 6 7 8 9 10 11 12
for(;;)
{
cout
cin
cout
cin
...
//here, I want to have a pause to view what the for loop has come up with but to not have
//a message display or a button press needed. At the end of the loop, I want it to pause
//before looping again. IS this possible?
//If so, how can I implement it into my program? Any help would be appreciated. Thank you!
}