Writing a Program that insert, delete, display, find and quit? JAVAPROGRAMMING please help me I'm new with Java and my teacher gave me this?

Given a list of employees create a simple program that allows the user to insert, delete, display and search an employee.

The program should display 10 employees. Also, a list of menu should be displayed. The menu names are Insert, Delete Display and Search

Insert- allows the user to insert 1 employee at a time with a corresponding ID number w/c serves as their link. All employees to be inserted must be inserted at the end of the list. Delete - allows the user to delete the 1st employee from the list Display - allows the user to display the list Search - Allows the user to find a certain employee

example output:

ABC Company

Allemon, Dianne 235 West, David 568 Kirch, Marsh 314 Harden, James 413 Eastwood, Clint 823 Doglas, Shannon 206 etc.

1 - insert 2 - delete 3 - display 4 - find 5 - quit choice : 1 Input an employee with ID number: George, Paul 0123 Employee: George, Paul 0123 successfully inserted

1 - insert 2 - delete 3 - display 4 - find 5 - quit choice : 2 employee with ID number: Allemon, Dianne 235 deleted

1 - insert 2 - delete 3 - display 4 - find 5 - quit choice: 4 Enter Employee Name: Stiffler, Mike 645 Employee Stiffler, Mike 645 not found.

1 - insert 2 - delete 3 - display - 4 find 5 - quit choice: 3

ABC Company

Allemon, Dianne 235 West, David 568 Kirch, Marsh 314 Harden, James 413 Eastwood, Clint 823 Doglas, Shannon 206 etc..

1 - insert 2 - delete 3 - display - 4 find 5 - quit choice: 5

View Answers









Related Tutorials/Questions & Answers:
Advertisements