cout << "Please hit the enter key to terminate the program!"
You're missing a semi-colon at the end of that line.
Also, you're using non-standard C++ code from over a decade ago. If your compiler is happy with it, throw it away and get a modern compiler for free. If you're using Dev-C++ V4.9.9.2 or earlier, please please stop using it. Every time you do, God kills a kitten.
Also, Dev-C++ is not a compiler. Many people use the terms IDE/compiler/linker interchangeably as if they're all the same thing. You'll get away with not knowing the difference until the time when you really do need to know the difference, and then you'll be stuck. Best to learn now what an IDE, compiler and linker actually are.