myfirst.cpp 841 B

123456789101112131415
  1. // myfirst.cpp--displays a message
  2. #include <iostream> // a PREPROCESSOR directive
  3. int main() // function header
  4. { // start of function body
  5. using namespace std; // make definitions visible
  6. cout << "Come up and C++ me some time."; // message
  7. cout << endl; // start a new line
  8. cout << "You won't regret it!" << endl; // more output
  9. // If the output window closes before you can read it,
  10. // add the following code:
  11. // cout << "Press any key to continue." <<endl;
  12. // cin.get();
  13. return 0; // terminate main()
  14. } // end of function body