Instructions:
- Submit the following:
YourASURiteID.zip This compressed folder should contain the following files:
1. EmployeeWorkHours.java
2. A readme.txt containing any instructions you want to provide to the instructor/grader
- Make sure your java files compile without any compiler errors. You will not receive any credit for programs with compiler errors.
- If you are unable to complete your program, submit the parts that work with no compiler errors for partial credit.
Problem: Computing the weekly hours of Employees
Suppose the weekly hours for all employees are stored in a two-dimensional array. Each row records an employee's n-day work hours with n columns where n ≥ 1 and n ≤ 7 representing the number of days in a week that these employees work. For example, the table shown below represents an array that stores the work hours of eight employees for 7 days in a week. Write a program that takes in as inputs, the number of employees and the number of working days in a week. Then it takes in all the Employee information (name and number of daily hours worked). This program should display employees and their total hours worked in a week in decreasing order of thetotal hours.