-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeVosNick_Project4.cpp
More file actions
298 lines (268 loc) · 7.18 KB
/
DeVosNick_Project4.cpp
File metadata and controls
298 lines (268 loc) · 7.18 KB
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
// Project 4
// DeVosNick_Project4.cpp
// Name: Nick DeVos
// Date: 11/19/2016
#include<iostream>
#include<string>
#include<vector>
#include<iomanip>
#include<fstream>
using namespace std;
// Prototypes
void outputResults();
void storeInfo();
// Global variables
string courseID;
vector<double> labGrades;
vector<double> projectGrades;
vector<double> testGrades;
double finalExam;
double finalGrade;
string studentFirstName = "Nick";
string studentLastName = "DeVos";
double testAvg;
double labAvg;
double projectAvg;
char letterGrade;
bool pass = true;
int main()
{
// Variables
char choice;
bool testsEntered = false, labsEntered = false, projectsEntered = false, finalExamEntered = false;
int tempValue;
// Ask for input
cout << "What is the course ID? ";
getline(cin, courseID);
while (testsEntered == false || labsEntered == false || projectsEntered == false || finalExamEntered == false)
{
cout << "Grade Categories: (a)Tests (b)Labs (c)Projects (d)Final Exam\n";
cout << "Please select a grade category. ";
cin.get(choice);
cin.ignore(1);
switch (choice)
{
case 'a':
case 'A':
cout << "\nPlease enter one test score then press enter. Continue entering one score at a time until you would like\n"
"to quit. If you would like to quit entering test grades please enter '-1'. (Maximum of 5 test grades)\n";
for (int count = 0; count < 5; count++)
{
cin >> tempValue;
if (tempValue != -1)
{
testGrades.push_back(tempValue);
testsEntered = true;
}
else
break;
}
cin.ignore(1);
break;
case 'b':
case 'B':
cout << "\nPlease enter one lab score then press enter. Continue entering one score at a time until you would like\n"
"to quit. If you would like to quit entering lab grades please enter '-1'. (Maximum of 10 lab grades)\n";
for (int count = 0; count < 10; count++)
{
cin >> tempValue;
if (tempValue != -1)
{
labGrades.push_back(tempValue);
labsEntered = true;
}
else
break;
}
cin.ignore(1);
break;
case 'c':
case 'C':
cout << "\nPlease enter one project score then press enter. Continue entering one score at a time until you would like\n"
"to quit. If you would like to quit entering project grades please enter '-1'. (Maximum of 5 project grades)\n";
for (int count = 0; count < 5; count++)
{
cin >> tempValue;
if (tempValue != -1)
{
projectGrades.push_back(tempValue);
projectsEntered = true;
}
else
break;
}
cin.ignore(1);
break;
case 'd':
case 'D':
cout << "Please enter one final exam grade. ";
cin >> finalExam;
cin.ignore(1);
finalExamEntered = true;
default:
cout << "You must enter a valid choice to continue. Please choose one of the letters for grade categories. \n";
break;
}
}
// Call functions for display and file creation
outputResults();
storeInfo();
return 0;
}
void outputResults()
{
// Initialize counters
int count = 0;
int gradeNum = 1;
double acc = 0;
// Start output
cout << "\nHello! Thank you for using Nick's improved grade calculator!\n\n";
cout << studentFirstName << " " << studentLastName << endl;
cout << "Course ID: " << courseID << endl;
cout << "TESTS\n";
cout << setprecision(1) << fixed;
// While there are test grades in testGrades, display them
for (count = 0; count < testGrades.size(); count++)
{
cout << setw(8) << "Test " << gradeNum << "- " << testGrades[count] << endl;
acc += testGrades[count];
gradeNum++;
}
// Test average
testAvg = acc / (testGrades.size());
cout << "Test Average: " << testAvg << endl << endl;
// Reset counters for next output
count = 0;
gradeNum = 1;
acc = 0;
// Lab grades
cout << "LABS\n";
for (count = 0; count < labGrades.size(); count++)
{
cout << setw(7) << "Lab " << gradeNum << "- " << labGrades[count] << endl;
acc += labGrades[count];
gradeNum++;
}
labAvg = acc / (labGrades.size());
cout << "Lab Average: " << labAvg << endl << endl;
// Reset counters for next output
count = 0;
gradeNum = 1;
acc = 0;
// Project grades
cout << "PROJECTS\n";
for (count = 0; count < projectGrades.size(); count++)
{
cout << setw(11) << "Project " << gradeNum << "- " << projectGrades[count] << endl;
acc += projectGrades[count];
gradeNum++;
}
projectAvg = acc / (projectGrades.size());
cout << "Project Average: " << projectAvg << endl << endl;
// Final Exam
cout << "FINAL EXAM: " << finalExam << endl << endl;
// Final Average
finalGrade = (testAvg * .3) + (labAvg * .3) + (projectAvg * .3) + (finalExam * .1);
cout << "FINAL GRADE: " << finalGrade << endl;
// Letter grade
if (finalGrade >= 90)
letterGrade = 'A';
else if (finalGrade >= 80)
letterGrade = 'B';
else if (finalGrade >= 70)
letterGrade = 'C';
else if (finalGrade >= 60)
letterGrade = 'D';
else
{
letterGrade = 'F';
pass = false;
}
// Display letter grade and pass/fail
cout << "Letter Grade: " << letterGrade << endl;
cout << "Pass/Fail: ";
if (pass)
cout << "Pass\n";
else
cout << "Fail\n";
}
void storeInfo()
{
// Variables
ofstream outFile;
// Initialize counters
int count = 0;
int gradeNum = 1;
double acc = 0;
// Start output
outFile.open("GradeInfo2.txt");
outFile << "Hello! Thank you for using Nick's improved grade calculator!\n\n";
outFile << studentFirstName << " " << studentLastName << endl;
outFile << "Course ID: " << courseID << endl;
outFile << "TESTS\n";
// While there are test grades in testGrades, display them
for (count = 0; count < testGrades.size(); count++)
{
outFile << "Test " << gradeNum << "- " << testGrades[count] << endl;
acc += testGrades[count];
gradeNum++;
}
// Test average
testAvg = acc / (testGrades.size());
outFile << "Test Average: " << testAvg << endl << endl;
// Reset counters for next output
count = 0;
gradeNum = 1;
acc = 0;
// Lab grades
outFile << "LABS\n";
for (count = 0; count < labGrades.size(); count++)
{
outFile << "Lab " << gradeNum << "- " << labGrades[count] << endl;
acc += labGrades[count];
gradeNum++;
}
labAvg = acc / (labGrades.size());
outFile << "Lab Average: " << labAvg << endl << endl;
// Reset counters for next output
count = 0;
gradeNum = 1;
acc = 0;
// Project grades
outFile << "PROJECTS\n";
for (count = 0; count < projectGrades.size(); count++)
{
outFile << "Project " << gradeNum << "- " << projectGrades[count] << endl;
acc += projectGrades[count];
gradeNum++;
}
projectAvg = acc / (projectGrades.size());
outFile << "Project Average: " << projectAvg << endl << endl;
// Final Exam
outFile << "FINAL EXAM: " << finalExam << endl << endl;
// Final Average
finalGrade = (testAvg * .3) + (labAvg * .3) + (projectAvg * .3) + (finalExam * .1);
outFile << "FINAL GRADE: " << finalGrade;
// Letter grade
if (finalGrade >= 90)
letterGrade = 'A';
else if (finalGrade >= 80)
letterGrade = 'B';
else if (finalGrade >= 70)
letterGrade = 'C';
else if (finalGrade >= 60)
letterGrade = 'D';
else
{
letterGrade = 'F';
pass = false;
}
// Display letter grade and pass/fail
outFile << "Letter Grade: " << letterGrade << endl;
outFile << "Pass/Fail: ";
if (pass)
outFile << "Pass\n";
else
outFile << "Fail\n";
outFile.close();
}