Create a program in Java that implements Polymorphism and asks the users input to compute the wages of regular and contractual employees. Below is a sample output but it is also accepted to have a different output design Sample Output Payroll System Parent Class ID: Name: Job Position: Job Status: ______________________________________________ Sub Class 1 ID: 101 Name: John Vasquez Job Position: Teacher Job Status: Regular Enter Rate/Day: 1000 Enter Total Days Worked: 24 The Gross Income is: 24,000 --------------------------------------------------------------------------------------- Sub Class 2 ID: 102 Name: James Montebon Job Position: Utility Man Job Status: Contractual Enter Rate/hr. 100 Enter Total Days Worked: 24 --------> 8 hrs. /day The Gross Income is: 19,200 Note: If you can’t see a word “ ENTER”, which means the values are fixed, no input.
Create a program in Java that implements Polymorphism and asks the users input to compute the wages of regular and contractual employees. Below is a sample output but it is also accepted to have a different output design
Sample Output
Payroll System
Parent Class
ID:
Name:
Job Position:
Job Status:
______________________________________________
Sub Class 1
ID: 101
Name: John Vasquez
Job Position: Teacher
Job Status: Regular
Enter Rate/Day: 1000
Enter Total Days Worked: 24
The Gross Income is: 24,000
---------------------------------------------------------------------------------------
Sub Class 2
ID: 102
Name: James Montebon
Job Position: Utility Man
Job Status: Contractual
Enter Rate/hr. 100
Enter Total Days Worked: 24 --------> 8 hrs. /day
The Gross Income is: 19,200
Note: If you can’t see a word “ ENTER”, which means the values are fixed, no input.
Step by step
Solved in 4 steps with 3 images