// One peculiarity of the C++ environment used in the lab (Borland C++) is // that the execution window disappears as soon as the program finishes. // To ensure that the a your program's output sticks around long enough to be // seen, use the following program "template". #include #include #include // required // For the moment, don't worry about what these lines mean. // Just put them in your program exactly as they appear here. void pause (void) { cout << "Hit any key to continue..."; getch (); } void main (void) { // your statements go in here // put this line at the end of your program pause (); }