CECS 277
LAB ASSIGNMENT #5
Assigned date:3/18
Due date: 3/25

30 points

1. [10 points] Writing a simple lottery program. The program should randomly generates a wining lottery ticket, them prompt the player to enter a lotto numbers. Depending on how many numbers match, the player wins various prizes.

Sample output

Type 6 lotto numbers: 4  12  7  35  20  1
Your ticket was: [ 4, 12, 7, 35, 20, 1]
Winning numbers: [ 2, 13, 27, 7, 11, 4]
Match numbers: [4,7]
Your prize is $500.00

Requirements: Inplement the following methods in your program

2. [20 points] Write a program that keeps a map in which the keys of the map are objects of class Employee. An employee should have a first name, a last name, and a unique integer ID. For the performance changes and removals, lookup should be by ID. Prompt the user of the program to add or remove employees, to modify the performances, or to print all the performaces. The printout should be sorted by last name. If two employees 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 Employee class. Test the hash code by adding the Employee objects to a hash set.

Hint:

GRADING