Intro Program - classes, strings and vectors

You are going to write a simple grading program. It will read in from stdin, the information on the class, assignments and the students. The program needs to show the classname, total points, grades on each assignment for each student, and the students percentage for the term.

Here is a sample input file
Note: There are 3 start of line characters to identify the input line. Based on the start character ( = : - ) you can tell if the input is the class name, assignment information, or student information.

You will want to read the lines in using the getline function, and use the string find and substr methods to parse out the pieces you need.

All of the output must be formatted and aligned. This will require that we use setw and alignment flags ( either labels or use setioflags ).
Here is a sample run from my program

I want you to create classes for the assignments, and students. And create vectors of each type to store the data.

This is due on February 4th.

The Goals