CECS 277
LAB ASSIGNMENT 5
Assigned date: 10/15
Due date: 10/22

30 points

Write a program that keeps a map in which the keys of the map are objects of class Student. A student should have a first name, a last name, and a unique integer ID. For the grade changes and removals, lookup should be by ID. Prompt the user of the program to add or remove students, to modify the grades, or to print all the grades. The printout should be sorted by last name. If two students have the same last name, then use the first name as a tie breaker. If the first names are also identical, then use the integer ID. Supply compatible hashCode and equals methods to the Student class. Test the hash code by adding the Student objects to a hash set.

Hint:

GRADING