How to do this?
Write a program that used to manage the HR data of a Faculty that has a team of 10 employees. The employee data like ( eno , ename , job ,salary , bonus).
The program should have:
Function to accept the data of employees and automatically set the salary according to the following formulas in case the
Job = ‘senior Lecturer’ ( salary = 6000
Job = ‘Lecturer’ ( salary = 5000
Job = ‘Admin Assistant’ ( salary = 2500
Otherwise ( salary = 1500)
Function to set the bonus value for a specific employee according to specific percent.
Function to print out the data of all employees.
Must use Structure,Array and Loop.
Write a program that used to manage the HR data of a Faculty that has a team of 10 employees. The employee data like ( eno , ename , job ,salary , bonus).
The program should have:
Function to accept the data of employees and automatically set the salary according to the following formulas in case the
Job = ‘senior Lecturer’ ( salary = 6000
Job = ‘Lecturer’ ( salary = 5000
Job = ‘Admin Assistant’ ( salary = 2500
Otherwise ( salary = 1500)
Function to set the bonus value for a specific employee according to specific percent.
Function to print out the data of all employees.
Must use Structure,Array and Loop.
Comment