CSC 7000 - Algorithms and Programming

Project #7

Programs Due 9am Wednesday, March 27, 2002

Reports Due in class Monday, April 8, 2002

For this project you will write a program that processes a list of student records. The input to your program will consist of some lines of text (maximum will be 40). On each line will be:

Click here for a sample input file.

Your application will:

  1. Read all the data into an array of structures, each representing a strudent record, with fields for each of the above pieces of information and a field to hold the average score
  2. Compute the average of the four test scores for each student and store it in the appropriate place
  3. Compute the average for each of the tests (over all students)
  4. Output the information in a nice tabular format, with appropriate headings.

You can assume that the input will be correct. On the due date I will collect StudentScores.java .

The report part of this project is due later and is to be combined with Project 8.