Question
IN C++ format. Design a class named TimeOff. The purpose of the class is to track an employees sick leave, vacation, and unpaid time off.
IN C++ format.
Design a class named TimeOff. The purpose of the class is to track an employees sick leave, vacation, and unpaid time off. It should have, as members, the following instances of the NumDays class described in Step 1:
maxSickDays A NumDays object that records the maximum number of days of sick leave the employee may take.
sickTaken A NumDays object that records the number of days of sick leave the employee has already taken.
maxVacation A NumDays object that records the maximum number of days of
paid vacation the employee may take.
vacTaken A NumDays object that records the number of days of paid vacation
the employee has already taken.
maxUnpaid A NumDays object that records the maximum number of days of
unpaid vacation the employee may take.
unpaidTaken A NumDays object that records the number of days of unpaid leave
the employee has taken.
Additionally, the class should have members for holding the employees name and identification number. It should have an appropriate constructor and member functions for storing and retrieving data in any of the member objects.
Write a program that uses an instance of the TimeOff class you designed. The program should ask the user to enter the number of months an employee has worked for the company. It should then use the TimeOff object to calculate and display the employees maximum number of sick leave and vacation days. Employees earn 12 hours of vacation leave and 8 hours of sick leave per month.
Input Validation: Company policy states that an employee may not accumulate more
than 240 hours of paid vacation. The class should not allow the maxVacation object
to store a value greater than this amount.
Sample Output:
How many months has the Employee worked for the company? : 10
Available vacation: 15 days
Available sick leave: 10 days
Press any key to continue . . .
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