Page 1 of 1

In this project, students are to use Java to develop a payroll software to assist in paying the salary of employees/staf

Posted: Wed Apr 27, 2022 3:36 pm
by answerhappygod
In This Project Students Are To Use Java To Develop A Payroll Software To Assist In Paying The Salary Of Employees Staf 1
In This Project Students Are To Use Java To Develop A Payroll Software To Assist In Paying The Salary Of Employees Staf 1 (177.59 KiB) Viewed 29 times
I need help with programming 2
In this project, students are to use Java to develop a payroll software to assist in paying the salary of employees/staff of a certain university named XYZ University Assume we have three employees in the university with ranks - Programmer Admin and Librarian, wnte a Java program to calculate and print out the total salary of these three employees in the institution. The program should have the following features: 1) Create a public class named Employee that would get the firstname and lastname of each employee from the keyboard/user 2) Create three objects prog, adm and lib, for programmer, admin and librarian respectively to access the properties in Employee class 3) Create Employee Salary as parent interface to store basic_sal, housing all and transport_all. The values for these three items are fixed for all Employee and has abstract function calculate Salary 4) Create three sub classes namely programmer, admin and librarian to store bonus, overtime and total salary for each employee 5) Each of the constructor in (4) should inherit the properties of Employee(using the super keyword) and implement the Employee Salary interface 6) Hide the properties from the parent class Employee using encapsulation principle 7) Use getters and setters to make the properties in Employee visible and accessible to other classes, programmer, admin and librarian. 8) The total salary should be computed by adding basic salary, housing allowance, transport allowance, and bonus overtime 9) The printout of the program should display the following for each employee firstname and lastname, basic salary, housing allowance Transport allowance bonus overtime and total salary NB: LINES INDICATED IN BLUE ARE USER INPUT(VALUES FROM KEYBOARD) AND THE REST IS WHAT YOUR CLASSES SHOULD FORMAT THE VALUES THROUGH TO STRING METHODS.