Create a program that uses two arrays: one to hold employee


Create a program that uses two arrays: one to hold employee names and one to hold employee salaries (standard US currency, two decimal points). The program should prompt the user to enter employee names and salaries (see screenshot for details). The just-entered employee name should be printed when prompting for their salary. 

After all employees have been entered, present the user with a menu, implemented with a switch, of actions that can be taken with the data that has been entered. This menu should be presented until the user chooses to quit. The user should be able to: 
• print all employees and salaries, 
• print the maximum salary and who makes it, 
• print the minimum salary and who makes it, 
• print the average salary and how many employees make more, less, or equal to the average, 
• and quit. 

You should have at least four methods for this project. One method, printAll(), should simply print all employees and their salaries (using fixed width columns, see System.out.printf(...)) line-by-line. The second method, getMaxSalaryIndex() should walk through the salary array, determine the maximum salary, and return the index of that salary. The third method, getMinSalaryIndex() should be a clone of getMaxSalaryIndex(), but should determine the smallest salary and return the index of that salary. The fourth method, printAverageStats() 
should calculate the average salary from the salary array and should then walk back over the array. 

Request for Solution File

Ask an Expert for Answer!!
Basic Computer Science: Create a program that uses two arrays: one to hold employee
Reference No:- TGS0145240

Expected delivery within 24 Hours