1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
#include <iostream>
#include <string>
#include <cstdlib>
#include <iomanip>
using namespace std;
const double MIN_SALARY=50000;
const double MAX_SALARY=250000;
const int MAX_DEPENDENTS=10;
const int MIN_DEPENDENTS=0;
const char DEFAULT_GENDER='N';
const int NUMBER_WEEKS=52;
class Benefit
{
string healthInsurance;
double lifeInsurance;
int vacation;
public:
Benefit(): healthInsurance("not provided"), lifeInsurance(0), vacation(14){}
Benefit(string HealthInsurance, double LifeInsurance, int Vacation):
healthInsurance(HealthInsurance), lifeInsurance(LifeInsurance),
vacation(Vacation){}
Benefit(Benefit &mybenefit): healthInsurance(mybenefit.healthInsurance),
lifeInsurance(mybenefit.lifeInsurance), vacation(mybenefit.vacation){}
string getHealthInsurance()
{
return healthInsurance;
}
void setHealthInsurance(string HealthInsurance)
{
healthInsurance=HealthInsurance;
}
double getLifeInsurance()
{
return lifeInsurance;
}
void setLifeInsurance(double LifeInsurance)
{
lifeInsurance=LifeInsurance;
}
int getVacation()
{
return vacation;
}
void setVacation(int Vacation)
{
vacation=Vacation;
}
void displayBenefits()
{
cout<<"\nBenefit Information\n";
cout<<"____________________________________________________________\n";
cout<<"Health Insurance:\t"<<healthInsurance<<"\n";
cout<<"Life Insurance:\t\t"<<lifeInsurance<<"\n";
cout<<"Vacation:\t\t"<<vacation<<"days\n";
}
};
class Employee
{
//declare static variable accessible, which is accessible by all objects of the class
static int numEmployees;
protected:
string firstName;
string lastName;
char gender;
int dependents;
double annualSalary;
//declare a benefits object
Benefit benefits;
public:
Employee(): benefits() firstName(""), lastName(""), gender('N'), dependents(0),
annualSalary(50000)
{
numEmployees++;
}
Employee(string FirstName, string LastName, char Gender, int Dependents,
double salary, Benefit Mybenefits): benefits(Mybenefits),
firstName(FirstName), lastName(LastName), gender(Gender),
dependents(Dependents), annualSalary(salary)
{
numEmployees++;
}
Benefit getBenefits()
{
return benefits;
}
void setBenefits(Benefit Benefits)
{
benefits=Benefits;
}
static int getNumberEmployees()
{
return numEmployees;
}
string getFirstName()
{
return firstName;
}
void setFirstName(string name)
{
firstName=name;
}
string getLastName()
{
return lastName;
}
void setLastName(string name)
{
lastName=name;
}
char getGender()
{
return gender;
}
void setGender(char gen)
{
switch (gen)
{
case 'f':case 'F': case 'M':case 'm':
gender=gen;
break;
default:
gender=DEFAULT_GENDER;
break;
}
}
int getDependents()
{
return dependents;
}
void setDependents(int dep)
{
if (dep >= MIN_DEPENDENTS && dep <= MAX_DEPENDENTS) dependents=dep;
else if (dep < MIN_DEPENDENTS) dep=MIN_DEPENDENTS;
else dependents=MAX_DEPENDENTS;
}
double getAnnualSalary()
{
return annualSalary;
}
void setAnnualSalary(double salary)
{
if (salary >= MIN_SALARY && salary <= MAX_SALARY) annualSalary=salary;
else if (salary < MIN_SALARY) annualSalary=MIN_SALARY;
else annualSalary=MAX_SALARY;
}
double calculatePay()
{
return annualSalary/NUMBER_WEEKS;
}
void displayEmployee()
{
cout<<"Employee Information\n";
cout<<"____________________________________________________________\n";
cout<<"Name: \t\t" <<firstName<<" "<<lastName<<"\n";
cout<<"Gender:\t\t"<<gender<<"\n";
cout<<"Dependents: \t"<<dependents << "\n";
cout<<"Annual Salary:\t"<<setprecision(2)<<showpoint<<fixed<<annualSalary<<"\n";
cout<<"Weekly Salary:\t"<<calculatePay()<<"\n";
benefits.displayBenefits();
}
};
class Salaried : public Employee()
{
private:
//declare data variables
const int MIN_MANAGEMENT_LEVEL=0;
const int MAX_MANAGEMENT_LEVEL=3;
const double BONUS_PERCENT=.10;
int managementLevel;
public:
Salaried(): managementLevel(0){}
Salaried(string firstName, string lastName, char gender, int dependents,
double salary, Benefit mybenefits):benefits(mybenefits), int manLevel):
Employee(firstName, lastName, gender, dependents, salary, mybenefits){}
Salaried(double sal, int manLevel): annualSalary(sal), managmentLevel(manLevel){}
double calculatePay()
{
return Employee::calculatePay()*(1+(managementLevel*BONUS_PERCENT));
}
void displayEmployee()
{
cout<<"Employee Information\n";
cout<<"____________________________________________________________\n";
cout<<"Name: \t\t"<<firstName<<" "<<lastName<<"\n";
cout<<"Gender:\t\t"<<gender<<"\n";
cout<<"Dependents: \t"<<dependents <<"\n";
cout<<"Annual Salary:\t" << setprecision(2)<<showpoint<<fixed<<annualSalary<<"\n";
cout<<"Weekly Salary:\t"<<calculatePay()<<"\n";
cout<<"Management Level: "<<managementLevel<<endl;
benefits.displayBenefits();
}
int getManagementLevel()
{
return managementLevel;
}
void setManagementLevel(int manLevel);
{
if (manlevel<4) managementLevel=manLevel;
else cerr<<"Management Level Error" << endl;
}
};
class Hourly : public Employee()
{
private:
//declare data members
const double MIN_WAGE=10;
const double MAX_WAGE=75;
const double MIN_HOURS=0;
const double MAX_HOURS=50;
double wage;
double hours;
string category;
public:
Hourly(double Wage=0, double Hours=0, string Category="X"):
wage(Wage), hours(Hours), category(Category){}
Hourly(string firstName, string lastName, char gender, int dependents,
double salary, Benefit mybenefits):benefits(mybenefits), int manLevel):
Employee(firstName, lastName, gender, dependents, salary, mybenefits)
{}
double calculatePay()
{
return wage * hours;
}
void setAnnualSalary(double salary)
{
salary=Employee::calculatePay() * 50;
}
void displayEmployee()
{
cout<<"Employee Information\n";
cout<<"____________________________________________________________\n";
cout<<"Name: \t\t"<<firstName<<" "<<lastName<<"\n";
cout<<"Gender:\t\t"<<gender<<"\n";
cout<<"Dependents: \t"<<dependents<<"\n";
cout<<"Annual Salary:\t"<<setprecision(2)<<showpoint<<fixed<<annualSalary<<"\n";
cout<<"Weekly Salary:\t"<<calculatePay()<<"\n";
cout<<"Category "<<category<<endl;
benefits.displayBenefits();
}
double getWage()
{
return wage;
}
void setWage(double Wage)
{
wage=Wage;
}
double getHours();
{
return hours;
}
void setHours(double Hours)
{
hours=Hours;
}
string getCategory()
{
return categeory;
}
void setCategory(string Category)
{
if (category=="temporary" || category=="part time" || category=="full time")
category=Category;
else
cerr<<"Category Error" << endl;
}
};
int Employee::numEmployees=0;
void DisplayApplicationInformation()
{
cout<<"Welcome to your Object Oriented Program--Employee Class"
<<"CIS247C, Week 5 Lab"
<<"Name: Eugene Young D03152610";
}
void DisplayDivider(string message)
{
cout<<"\n*************** "+message+" *********************\n";
}
string GetInput( string message)
{
string mystring;
cout<<"Please enter your "<<message;
getline(cin, mystring);
return mystring;
}
void TerminateApplication()
{
cout<<"\nThe end of the CIS247C Week4 iLab.\n";
}
|