-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctionality.cpp
More file actions
434 lines (337 loc) · 10.5 KB
/
functionality.cpp
File metadata and controls
434 lines (337 loc) · 10.5 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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
#include <iostream>
#include "Header.h"
void add_Student() {
Student student;
//Prompt for student details
cout << "Enter last name of the student: ";
cin.ignore(); //Ignore newline character from previous input
getline(cin, student.lastName);
cout << "Enter first name of the student: ";
getline(cin, student.firstName);
cout << "Enter student ID: ";
cin >> student.studentID;
cout << "How many tests did this student take? ";
cin >> student.numTestsTaken;
//Allocate memory for test scores
student.testScores = new int[student.numTestsTaken];
cout << endl;
for (int i = 0; i < student.numTestsTaken; i++) {
cout << "Enter score #" << (i + 1) << ": ";
cin >> student.testScores[i];
}
//Open the data file student.dat and write the data of the student to the file maintaining the given format
ofstream fin ("student.dat", ios_base::app | ios_base::in);
if (fin.fail()) {
cout << "File error." << endl;
exit(1);
}
//Use the structure members to write student data to file
fin << "\n" << student.lastName << "," << student.firstName << "," << student.studentID << "," << student.numTestsTaken;
for (int i = 0; i < student.numTestsTaken; i++) {
fin << "," << student.testScores[i];
}
fin << ",";
//Close the file
fin.close();
}
void remove_Student(int studentID)
{
//Call function getNumber to get the current number of students in the data file
int numStudents = getNumber();
if (numStudents == 0)
{
cout << "No students to remove." << endl;
return;
}
//Create a dynamic array of the structure type Student
Student* students = new Student[numStudents];
//Open the student.dat file for reading
ifstream fin("student.dat");
if (fin.fail())
{
cout << "File error." << endl;
exit(1);
}
bool found = false;
int validStudentCount = 0;
for (int i = 0; i < numStudents; i++)
{
string line;
getline(fin, line);
if (line.empty()) continue; //Skip empty lines
istringstream cin(line);
string token;
//Read name
getline(cin, students[validStudentCount].lastName, ',');
getline(cin, students[validStudentCount].firstName, ',');
//Read student ID
getline(cin, token, ',');
students[validStudentCount].studentID = stoi(token);
//Read number of tests
getline(cin, token, ',');
students[validStudentCount].numTestsTaken = stoi(token);
students[validStudentCount].testScores = new int[students[validStudentCount].numTestsTaken];
//Read test scores
for (int j = 0; j < students[validStudentCount].numTestsTaken; j++)
{
getline(cin, token, ',');
students[validStudentCount].testScores[j] = stoi(token);
}
//Check if the student ID matches the student ID to be removed
if (students[validStudentCount].studentID == studentID)
{
found = true;
}
else
{
validStudentCount++;
}
}
fin.close();
if (found)
{
//Open the student.dat file for writing
ofstream fout("student.dat");
if (fout.fail())
{
cout << "File error." << endl;
exit(1);
}
for (int i = 0; i < validStudentCount; i++)
{
fout << students[i].lastName << "," << students[i].firstName << "," << students[i].studentID << "," << students[i].numTestsTaken;
for (int j = 0; j < students[i].numTestsTaken; j++)
{
fout << "," << students[i].testScores[j];
}
if (i < validStudentCount - 1)
{
fout << endl; //Add newline except for the last line
}
}
fout.close();
cout << "Student ID has been removed." << endl;
}
else
{
cout << "Student does not exist." << endl;
}
//Clean up dynamically allocated memory
for (int i = 0; i < validStudentCount; i++)
{
delete[] students[i].testScores;
}
delete[] students;
}
void display()
{
//Open the data file for reading
ifstream fin("student.dat");
if (fin.fail())
{
cout << "File error." << endl;
exit(1);
}
//Get the number of student records
int numStudents = getNumber();
Student* students = new Student[numStudents];
//Read the contents of the file into the dynamic array
for (int i = 0; i < numStudents; i++)
{
string line;
getline(fin, line);
istringstream cin(line);
string token;
//Read name
getline(cin, students[i].lastName, ',');
getline(cin, students[i].firstName, ',');
//Read student ID
getline(cin, token, ',');
students[i].studentID = stoi(token);
//Read number of tests
getline(cin, token, ',');
students[i].numTestsTaken = stoi(token);
students[i].testScores = new int[students[i].numTestsTaken];
//Read test scores
for (int j = 0; j < students[i].numTestsTaken; j++)
{
getline(cin, token, ',');
students[i].testScores[j] = stoi(token);
}
}
//Display the contents of the array
for (int i = 0; i < numStudents; i++)
{
cout << left << setw(30) << (students[i].lastName + "," + students[i].firstName) << " ";
cout << left << setw(15) << students[i].studentID << " ";
for (int j = 0; j < students[i].numTestsTaken; j++)
{
cout << left << setw(5) << students[i].testScores[j] << " ";
}
cout << endl;
//Clean up dynamically allocated memory for test scores
delete[] students[i].testScores;
}
//Clean up dynamically allocated memory for students array
delete[] students;
//Close the file
fin.close();
}
void search(int studentID)
{
ifstream fin("student.dat");
if (fin.fail())
{
cout << "File error." << endl;
exit(1);
}
Student* student = new Student;
bool found = false;
string line;
while (getline(fin, line))
{
istringstream cin(line);
string token;
//Read name
getline(cin, student->lastName, ',');
getline(cin, student->firstName, ',');
//Read student ID
getline(cin, token, ',');
student->studentID = stoi(token);
//Read number of tests
getline(cin, token, ',');
student->numTestsTaken = stoi(token);
student->testScores = new int[student->numTestsTaken];
//Read test scores
for (int i = 0; i < student->numTestsTaken; i++)
{
getline(cin, token, ',');
student->testScores[i] = stoi(token);
}
//Check if the student ID matches the search ID
if (student->studentID == studentID)
{
found = true;
cout << endl;
//Display the data of the matched student
cout << left << setw(30) << (student->lastName + "," + student->firstName) << " ";
cout << left << setw(15) << student->studentID << " ";
for (int i = 0; i < student->numTestsTaken; i++)
{
cout << left << setw(5) << student->testScores[i] << " ";
}
cout << endl;
delete[] student->testScores;
break;
}
else
{
//Clean up dynamically allocated memory for test scores
delete[] student->testScores;
}
}
if (!found)
{
cout << "Student does not exist." << endl;
}
//Cean up dynamically allocated memory for students
delete student;
//Close the file
fin.close();
}
void exportResults()
{
//Open averages.dat for writing
ofstream fout("averages.dat");
if (fout.fail())
{
cout << "File error." << endl;
exit(1);
}
//Open student.dat for reading
ifstream fin("student.dat");
if (fin.fail())
{
cout << "File error." << endl;
exit(1);
}
//Get the number of students
int numStudents = getNumber();
//Create a dynamic array of type Student
Student* students = new Student[numStudents];
//Read the contents of the file and store it in the dynamic array
string line;
for (int i = 0; i < numStudents; ++i)
{
getline(fin, line);
istringstream cin(line);
string token;
//Read name
getline(cin, students[i].lastName, ',');
getline(cin, students[i].firstName, ',');
//Read student ID
getline(cin, token, ',');
students[i].studentID = stoi(token);
//Read number of tests
getline(cin, token, ',');
students[i].numTestsTaken = stoi(token);
students[i].testScores = new int[students[i].numTestsTaken];
//Read test scores
for (int j = 0; j < students[i].numTestsTaken; ++j)
{
getline(cin, token, ',');
students[i].testScores[j] = stoi(token);
}
}
//Process each student to compute the average
for (int i = 0; i < numStudents; ++i)
{
int sum = 0;
for (int j = 0; j < students[i].numTestsTaken; ++j)
{
sum += students[i].testScores[j];
}
int minScore = findMinimum(students[i].testScores, students[i].numTestsTaken);
//Solving the student ID and the average to averages.dat
if (students[i].numTestsTaken >= 5)
{
sum -= minScore;
double average = static_cast<double>(sum) / (students[i].numTestsTaken - 1);
fout << left << setw(15) << students[i].studentID << fixed << setprecision(1) << average << endl;
}
else
{
double average = static_cast<double>(sum) / students[i].numTestsTaken;
fout << left << setw(15) << students[i].studentID << fixed << setprecision(1) << average << endl;
}
//Clean up dynamically allocated memory for test scores
delete[] students[i].testScores;
}
//Clean up dynamically allocated memory for students
delete[] students;
//Close both files
fin.close();
fout.close();
cout << "Results exported to file." << endl;
}
int findMinimum(int* scores, int size)
{
if (size < 5)
{
//If fewer than 5 tests, return 0
return 0;
}
else
{
//Find the minimum score in the array
int minScore = scores[0];
for (int i = 1; i < size; ++i)
{
if (scores[i] < minScore)
{
minScore = scores[i];
}
}
return minScore;
}
}