-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.cpp
More file actions
165 lines (140 loc) · 3.91 KB
/
Main.cpp
File metadata and controls
165 lines (140 loc) · 3.91 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
/*
Pham, Kidd (Team Leader)
Nguyen, Cindy
Dao, Kenneth
Rodriguez, Cele
Project: Grade Report
CS A250
Fall 2023
*/
#include "StudentList.h"
#include "InputHandler.h"
#include "OutputHandler.h"
#include <iostream>
#include <iomanip>
using namespace std;
const string STUDENT_DATA = "student_data.txt";
void displayMenu();
void processChoice(StudentList&, double);
int main()
{
StudentList newList;
double num = 0.0;
readStudentData(STUDENT_DATA, newList, num);
displayMenu();
processChoice(newList, num);
cout << endl;
system("Pause");
return 0;
}
void displayMenu()
{
cout << "\n*** MAIN MENU ***\n" << endl
<< "Select one of the following:\n" << endl
<< " 1: Print all students\n"
<< " 2: Print student information\n"
<< " 3: Search student by last name\n"
<< " 4: Print students by course\n"
<< " 5: Print students on hold\n"
<< " 6: Print students to file\n"
<< " 7: Change student's grade\n"
<< " 8: To exit\n" << endl
<< "Enter your choice: ";
}
void processChoice(StudentList& stuList, double tuition)
{
int in = 8;
bool proceed = true;
while (proceed)
{
cin >> in;
cout << endl;
switch (in)
{
case 1:
{
stuList.printAllStudents(tuition);
system("Pause");
displayMenu();
break;
}
case 2:
{
int id = 0;
cout << "Please enter student's ID: ";
cin >> id;
cout << endl;
stuList.printStudentByID(id, tuition);
system("Pause");
displayMenu();
break;
}
case 3:
{
string lastName;
cout << "Please enter student's last name: ";
cin >> lastName;
cout << endl;
stuList.printStudentByName(lastName);
cout << endl;
system("Pause");
cout << endl;
displayMenu();
break;
}
case 4:
{
string prefix;
int num = 0;
cout << "Please enter course prefix: ";
cin >> prefix;
cout << "Please enter course number: ";
cin >> num;
cout << endl;
stuList.printStudentsByCourse(prefix, num);
cout << endl;
system("Pause");
displayMenu();
break;
}
case 5:
{
stuList.printStudentsOnHold(tuition);
cout << endl;
system("Pause");
displayMenu();
break;
}
case 6:
{
printAllStudentsToFile(stuList, tuition);
cout << endl;
system("Pause");
displayMenu();
break;
}
case 7:
{
stuList.changeGrade();
cout << endl;
system("Pause");
displayMenu();
break;
}
case 8:
{
proceed = false;
cout << "Thank you for using the OCC Gradebook. Good-Bye!\n";
break;
}
default:
{
cout << "Sorry. That is not a selection.\n";
cout << endl;
system("Pause");
displayMenu();
break;
}
}
}
}