Question: Please PLeDescription Write a Java program that can display the current list of employees, add a new employee to the list, and remove one from

Please PLeDescription
Write a Java program that can display the current list of employees, add a new employee to the
list, and remove one from the list.
Sample Output (Your output should be similar to the text in the following box)
Employees Management System
Command Menu:
list - List all the employees
add - Add an employee
remove - Remove an employee
exit - Exit the application
Command: liss
Invalid command. Try again.
Command: list
Mark Benson, 210001.03,456
Jenny Ha,130004.45,789
Command: add
Name: John Rink
Income: 125000.77
ID: 123
John Rink is added.
Command: list
Mark Benson, 210001.03,456
Jenny Ha,130004.45,789
John Rink, 125000.77,123
Command: remove
Index: 1
Mark Benson is removed.
Command: list
Jenny Ha,130004.45,789
John Rink, 125000.77,123
Command: exit
System terminated.
Specifications
Use your IDE to create a project named Project4 and a main Java class named Project4.
In the same Project4.java file, create another class named Employee that contains the
following methods:
one constructor
get and set methods
toString()
printInfo()
In the main method, declare an array list to store Employee objects.
Add the following methods to the main class:
private void printTitle(): Prints the title of the application on the screen
private void list(): Lists all the employees
private void add(): Adds a new employee to the employee list
private void remove(): Removes an employee from the employee list
Please PLeDescription Write a Java program that

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!