Objective #1: Memorize the hello world program.

// type your name here
// a1.cpp
// type the day of the week that you have class

#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
     cout << "hello world" << endl;
     system("pause");

     return 0;
}// end of main

Objective #2: Understand the different variable data types used in C++ and how they differ from constants.

Objective #3: Be able to write declaration statements that declare and initialize variables.

Objective #4: Use constants when appropriate.

Objective #5: Use the arithmetic operators and assignment statements.

Objective #6: Understand and apply the order of operations.

Objective #7: Understand promotion .

Objective #8: Understand type casting.

Objective #9: Avoid overflow, underflow, and loss-of-precision floating-point errors.

Objective #10: Be able to allow the user to display values as output to the screen.

Objective #11: Be able to allow the user to input values into the keyboard.

Objective #12: Use a simple rounding algorithm.

Objective #13: Use the "macho" rounding algorithm.

Objective #14: List and explain the 5 steps of the Programming Process.