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 301 302
|
#include <iostream>
#include <string>
#include <iomanip>
#include <sstream>
using namespace std;
string GetInput(string);
class Benefit{
private:
string healthInsurance;
double lifeInsurance;
int vacationDays;
public:
Benefit();
Benefit(string healthInsurance, double lifeInsurance, int vacationDays);
void displayBenefit();
string getHealthInsurance();
void setHealthInsurance(string heaIns);
double getLifeInsurance();
void setLifeInsurance(double lifeIns);
int getVacationDays();
void setVacationDays(int vacDays);
};
Benefit::Benefit(){
healthInsurance = "Not Available";
lifeInsurance = 0;
vacationDays = 0;
}
Benefit::Benefit(string healthInsurance, double lifeInsurance, int vacationDays){
this->healthInsurance = healthInsurance;
this->lifeInsurance = lifeInsurance;
this->vacationDays = vacationDays;
}
//Benefit::Benefit(Benefit &myBenefit){
//this->healthInsurance.myBenefit.healthInsurance;
//this->lifeInsurance.myBenefit.lifeInsurance;
//this->vacationDays.myBenefit.vacationDays;
//}
void Benefit::displayBenefit(){
cout << "\nBenefit Information" << endl;
cout << "________________________________" << endl;
cout << "Health Insurance Company: " << getHealthInsurance() << endl;
cout << "Life Insurance Amount: " << setprecision(2) << showpoint << fixed << getLifeInsurance() << endl;
cout << "Vacation Days: " << getVacationDays() << endl;
}
string Benefit::getHealthInsurance(){
return healthInsurance;
}
void Benefit::setHealthInsurance(string heaIns){
this->healthInsurance = heaIns;
}
double Benefit::getLifeInsurance(){
return lifeInsurance;
}
void Benefit::setLifeInsurance(double lifeIns){
this->lifeInsurance = lifeIns;
}
int Benefit::getVacationDays(){
return vacationDays;
}
void Benefit::setVacationDays(int vacDays){
this->vacationDays = vacDays;
}
//class iEmployee {
//public:
//virtual double calculatePay() = 0;
//};
class Employee {
int numEmployees = 0;
protected:
string firstName;
string lastName;
char gender;
int dependents;
double annualSalary;
Benefit Benefit;
public:
Employee();
Employee(string firstName, string lastName, char gender, int dependents, double salary);
string getFirstName();
void setFirstName(string firstName);
string getLastName();
void setLastName(string lastName);
char getGender();
void setGender(char gen);
int getDependents();
void setDependents(int dep);
void setDependents(string dep);
double getAnnualSalary();
void setAnnualSalary(double salary);
void setAnnualSalary(string salary);
void displayEmployee();
void setBenefit(Benefit ben);
Benefit getBenefit();
static int getNumEmployees();
double calculatePay();
};
//int Employee::numEmployees = 0;
Employee::Employee() {
firstName = "not given";
lastName = "not given";
gender = 'U';
dependents = 0;
annualSalary = 20000;
numEmployees++;
}
Employee::Employee(string firstName, string lastName, char gender, int dependents, double salary)
{
this->firstName = firstName;
this->lastName = lastName;
this->gender = gender;
this->dependents = dependents;
this->annualSalary = salary;
numEmployees++;
}
int convertToInt(string thestring){
int num;
std::istringstream cin(thestring);
cin >> num;
return num;
}
double convertToDouble(string thestring) {
double num;
std::istringstream cin(thestring);
cin >> num;
return num;
}
string Employee::getFirstName() {
return firstName;
}
string Employee::getLastName() {
return lastName;
}
char Employee::getGender() {
return gender;
}
int Employee::getDependents() {
return dependents;
}
double Employee::getAnnualSalary() {
return annualSalary;
}
void Employee::setFirstName(string firstName) {
this->firstName = firstName;
}
void Employee::setLastName(string lastName) {
this->lastName = lastName;
}
void Employee::setGender(char gen) {
this->gender = gen;
}
void Employee::setDependents(int dep) {
this->dependents = dep;
}
void Employee::setDependents(string dep) {
int depInt = convertToInt(dep);
this->dependents = depInt;
}
void Employee::setAnnualSalary(double salary) {
this->annualSalary = salary;
}
void Employee::setAnnualSalary(string salary) {
double salaryDouble = convertToDouble(salary);
this->annualSalary = salaryDouble;
}
double Employee::calculatePay() {
return annualSalary / 52.0;
}
Benefit Employee::getBenefit(){
return Benefit;
}
void Employee::setBenefit(Benefit ben){
string theString;
string input;
theString = GetInput("Life Insurance Amount");
Benefit.setLifeInsurance(atof(input.c_str()));
theString = GetInput("Vacation Days");
Benefit.setVacationDays(atoi(input.c_str()));
theString = GetInput("Health Insurance Company");
Benefit.setHealthInsurance(input);
}
int Employee::getNumEmployees(){
return numEmployees;
}
void Employee::displayEmployee() {
cout << "First Name: \t" << firstName << "\n";
cout << "Last Name: \t" << lastName << "\n";
cout << "Gender:\t\t" << gender << "\n";
cout << "Dependents: \t" << dependents << "\n";
cout << "Annual Salary:\t$" << annualSalary << "\n";
cout << "Weekly Salary:\t$" << calculatePay() << endl;
Benefit.displayBenefit();
cout << endl << endl;
}
class Salaried :public Employee
{
private:
const int MIN_MANAGEMENT_LEVEL;
const int MAX_MANAGEMENT_LEVEL;
const double BONUS_PERCENT;
int managementLevel;
public:
Salaried();
Salaried(string firstName, string lastName, char gen, int dep, double sal, Benefit ben, int manLevel),
Salaried(double sal, int manLevel);
double calculatePay();
void displayEmployee();
int getManagementLevel(int manLevel);
void setManagementLevel();
};
Salaried::Salaried():Employee(),MAX_MANAGEMENT_LEVEL(), MAX_MANAGEMENT_LEVEL(), BONUS_PERCENT(){
const int MIN_MANAGEMENT_LEVEL = 0;
const int MAX_MANAGEMENT_LEVEL = 3;
const int BONUS_PERCENT = 10;
int managementLevel = 0;
}
Salaried::Salaried(string firstName, string lastName, char gen, int dep, double sal, Benefit ben, int manLevel) : Employee(firstName, lastName, gen, dep, sal, ben), MIN_MANAGEMENT_LEVEL(0), MAX_MANAGEMENT_LEVEL(3), BONUS_PERCENT(10)
{
setManagementLevel = MIN_MANAGEMENT_LEVEL;
}
Salaried::Salaried(double sal, int manLevel){
setManagementLevel(manLevel);
setAnnualSalary(sal);
}
int Salaried::getManagementLevel(int manLevel){
return managementLevel;
}
void Salaried::setManagementLevel(int manLevel){
if (manLevel >= MIN_MANAGEMENT_LEVEL && manLevel <= MAX_MANAGEMENT_LEVEL)
managementLevel = manLevel;
else
{
managementLevel = MIN_MANAGEMENT_LEVEL;
}
}
double Salaried::calculatePay(){
double BONUS_PERCENT = managementLevel * .10; }
void Salaried::displayEmployee(){
Employee::displayEmployee();
cout << "Salaried Employee:\t" << endl;
cout << "Management Level:\t" << endl;
}
|