// cout statements #include #include using namespace std; int main() { /* cout << "hello world" << endl; cout << "hello Penn State" << endl */ cout << "The Programming Process" << endl; cout << endl << endl; cout << "1. Define the problem." << endl; cout << "2. Writing pseudocode." << endl; cout << "3. Code the program by writing it out on paper first.\n"; cout << "4. Test and debug the program."; cout << "\n5. Document and maintain the program."; cout << endl; system("pause"); return 0; }// end of main