Output Error

Hi. I need help with my lab assignment. It will not display employee2 information correctly. I've worked out some kinks in the code since I first posted. Can someone take a look at it?

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
 using namespace std;
string GetInput(string);

	

class iEmployee {
public:
	virtual double calculatePay() = 0;
};

class Benefit{
private:
	string healthInsurance;
	double lifeInsurance;
	int vacationDays;



public:
	Benefit();
	Benefit(string health, double life, int vac);
	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 health, double life, int vac){
	healthInsurance = health;
	lifeInsurance = life;
	vacationDays = vac;
}


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){
	healthInsurance = heaIns;
}

double Benefit::getLifeInsurance(){
	return lifeInsurance;
}

void Benefit::setLifeInsurance(double lifeIns){
	lifeInsurance = lifeIns;
}
int Benefit::getVacationDays(){
	return vacationDays;
}

void Benefit::setVacationDays(int vacDays){
	vacationDays = vacDays;
}



class Employee {
private:
	string firstName;
	string lastName;
	char gender;
	int dependents;
	double annualSalary;
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();
	double calculatePay();
	static int numEmployees;
	Benefit Benefit;
	

};

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;
}

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;
}


void DisplayDivider(string outputTitle)	{
	cout << "**************** " << outputTitle << " ****************" << endl;
}

void DisplayApplicationInformation(){
	cout << "Welcome to your first Object Oriented Program -- Employee ClassCIS247C.  Week 4 Lab" << endl;
	cout << "Name:" << endl;


}

string GetInput(string inputType){
	string strInput;
	cout << "Enter the " << inputType << ": ";
	cin >> strInput;
	return strInput;
}

int main()
{
	Employee* employee1 = new Employee();
	string input;
	char gen;
	int dep;
	double salary;
	DisplayApplicationInformation();
	DisplayDivider("Employee 1");
	input = GetInput("First Name");
	employee1->setFirstName(input);
	input = GetInput("Last Name");
	employee1->setLastName(input);
	cout << "Please enter your Gender: ";
	cin >> gen;
	employee1->setGender(gen);
	input = GetInput("Dependents");
	employee1->setDependents(input);
	input = GetInput("Annual Salary");
	employee1->setAnnualSalary(input);

	input = GetInput("Life Insurance Amount");
	employee1->Benefit.setLifeInsurance(atof(input.c_str()));
	input = GetInput("Vacation Days");
	employee1->Benefit.setVacationDays(atoi(input.c_str()));
	input = GetInput("Health Insurance Company");
	employee1->Benefit.setHealthInsurance(input);
	
	DisplayDivider("Employee Information");
	employee1->displayEmployee();
	cout << "Total employees: " << employee1->numEmployees << endl;
	DisplayDivider("Employee 2");
	Employee* employee2 = new Employee("Mary", "Noia", 'F', 5, 24000.0);
	
	Benefit benefit2 ("Washington Mutual", 500000, 7);
	
	
	DisplayDivider("Employee Information");
	
	employee2->displayEmployee();
			
	
	cout << "Total employees: " << employee2->numEmployees << endl;
	system("pause");
	return 0;
}
Last edited on
Topic archived. No new replies allowed.