Question
Write a well-documented (commented) program that displays the monthly payroll for a company that hires both salaried and hourly employees. The program should contain a
-
Write a well-documented (commented) program that displays the monthly payroll for a company that hires both salaried and hourly employees.
-
The program should contain a class named Employee having two subclasses named SalariedEmployee and HourlyEmployee.
-
The Employee class should have an instance variable for Name.
-
The SalariedEmployee class should have an instance variable for the monthly rate.
-
The HourlyEmployee class should have instance variables for hourly rate and hours worked.
-
Each subclass should have a calculatePay method.
-
After the data for all of the employees has been entered, the program should display the months pay for each employee, the number of employees, the number of salaried employees, and the total payroll. The program should use a list of objects.
-
A sample run would be as follows.
Enter employee's name: Jane
Enter employee's classification (Salaried or Hourly): Hourly
Enter the number of hours worked in a month: 100
Enter hourly wage: 20
Do you want to continue (Y/N)? Y
Enter employee's name: Fred
Enter employee's classification (Salaried or Hourly): Salaried
Enter monthly salary: 5000
Do you want to continue (Y/N)? N
Jane: $2,000.00
Fred: $5,000.00
Number of employees: 2
Number of salaried employees: 1
Total monthly payroll: $7,000.00
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started