Page 1 of 1

Write a C++ Program (in OOP) to calculate and display an employee's raise and new salary. The program details are the fo

Posted: Mon May 09, 2022 6:01 am
by answerhappygod
Write A C Program In Oop To Calculate And Display An Employee S Raise And New Salary The Program Details Are The Fo 1
Write A C Program In Oop To Calculate And Display An Employee S Raise And New Salary The Program Details Are The Fo 1 (45.23 KiB) Viewed 29 times
Write a C++ Program (in OOP) to calculate and display an employee's raise and new salary. The program details are the following: • A class called Salary Raise with private data members for the current salary, rate of raise, the raise amount and the calculated new salary. • A public function get_inputItems(), task is to get the information of the employee • A public function calculate_raise(), task is to calculate the raise of the employee (by applying the raise rate) and calculate the new salary of the employee A public function display_raise(), task is to display both the calculated raise and the new salary Also, add feature in the program that will ask the user to repeat or not the execution of the program.