Planning
Lab 1
Hank Feild
05-Aug-2014

Overview:

This program for Lab 1 displays several ages and then adds them up.


Requirements:

    - no input from the user
    - several ages are displayed
    - the sum of the ages is then displayed


Use cases:

    - the ages 10, 10, and 20 are displayed, then the sum 40 is displayed
    - the ages 15, 25, and 35 are displayed, then the sum 75 is displayed
    - the ages 20, 20, and 20 are displayed, then the sum 60 is displayed


Pseudo code:

    1. Set three ages (integers): age1, age2, and age3.
    2. Display each of the ages to the screen.
    3. Sum the three ages and display the result.