//Write your full name here #include //cout , cin, << , >>, istream, ostream #include //ifstream, ofstream #include //exit(1), abs(), atoi(), atol(), atof(), random(), rand(), srand() #include //setw #include //any string function #include //getch() for Borland and DevC++ #include //toupper(), tolower(), isupper(), islower(), etc. page 280-281 #include //sin(), cos(), tan(), asin(), acos(), atan(), sqrt(), pow(), exp(), log(), ceil(), floor() #include //strcat(), strcmp(), strcpy(), strlen(), strncat(), strcmp(), strncpy(), strstr(), p964 //#include "YourFileName.cpp" using namespace std;//global namespace--see Savitch pages 53, 152-153, 259, 535-552 char thisFileName [20] = "MainTemplate.cpp"; int main() { cout << "Starting main() of " << thisFileName << endl; //variable declarations //get input //process input //output to monitor cout << "Finishing main() of " << thisFileName << endl; //system("PAUSE"); // Use this ending for DevC++ cout << "\nPress any key to continue . . .\n"; //Use this ending for Borland OR DevC++ getch(); return 0; }