-
Notifications
You must be signed in to change notification settings - Fork 0
/
gestionEcole.cpp
302 lines (255 loc) · 6.5 KB
/
gestionEcole.cpp
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
/*
ANDRIATIANA Jean-Marie
L3 MISA
Gestion Ecole
*/
#include <iostream>
#include <fstream>
#include <vector>
#include <list>
using namespace std;
//définition de la structure student
struct student{
//attribute members
string nom;
vector<float> notes;
//method members
float moyenne();
void display();
};
bool isNumber(const string& str); //prototype de la fonction isNumber
//définition de la structure school
struct school{
//attribute members
list <student> eleves;
int nbStuds;
vector <string> topics;
int nbTopics;
bool ready4data;
string dataFile;
//method members
void initData();
void displayResult();
void addStudent();
void remStudent();
void saveData();
void readData();
};
//définition de la structure menu
struct menu{
//attribute
vector <string> options;
int choice;
bool dataRead;
//method
void initMenu();
void getChoice();
void manageChoice(school& ecole, bool &done);
};
int main(){
cout << "\t\t\t gestion de notes" <<endl;
bool done(false);
menu myMenu;
school ecole;
//on initialise les données
ecole.initData();
//on initialise le menu
myMenu.initMenu();
//Gère les tâches avec le menu
while(!done){
myMenu.getChoice();
myMenu.manageChoice(ecole, done);
}
return 0;
}
//la fonction isNumber
bool isNumber(const string& str){
for(char const &c : str){
if(std::isdigit(c)==0) return false;
}
return true;
}
/* Menu */
//la méthode initMenu
void menu::initMenu(){
dataRead = false;
choice = -1;
}
//la méthode getChoice
void menu::getChoice(){
//on affiche le menu
cout << "tapez: " << endl;
options.push_back("1 pour Afficher les resultats");
options.push_back("2 pour Lire les donnees sur disque");
options.push_back("3 pour Ajouter un eleve");
options.push_back("4 pour Sauver les donnees");
options.push_back("5 pour retirer un eleve");
options.push_back("0 pour Quitter ce programme");
for (int i = 0; i < 6; i++)
{
cout << "\t\t" << options[i] << endl;
}
cout << "votre choix: ";
cin >>choice;
if(choice<0 || choice>4){
getChoice();
}
}
//la méthode manageChoice
void menu::manageChoice(school& ecole, bool &done){
switch (choice)
{
case 0:
done = true;
break;
case 1:
if(ecole.ready4data==true || dataRead==true){
ecole.displayResult();
}
break;
case 2:
ecole.readData();
dataRead = true; //donnée lue
break;
case 3:
ecole.addStudent();
break;
case 4:
ecole.saveData();
break;
case 5:
ecole.remStudent();
break;
}
}
/* Student */
//définition de la méthode moyenne
float student::moyenne(){
int nbNotes = notes.size();
float somme(0);
for(int i=0; i<nbNotes; i++){
somme += notes[i];
}
return (somme/notes.size());
}
//définition de la méthode display
void student::display(){
int nbNotes = notes.size();
for(int i=0; i<nbNotes; i++){
cout <<"\t\t"<< notes[i];
}
cout << endl;
cout << "la moyenne est: "<< moyenne() << endl;
}
/* School */
//définition de la méthode displayResult
void school::displayResult(){
list <student>::iterator it; //on utilise un itérateur pour parcourir la liste
for (int i=0; i<nbTopics ; i++)
{
cout << "\t\t" << topics[i];
}
cout << endl;
for (auto it=eleves.begin(); it != eleves.end(); ++it)
{
cout << it -> nom << endl;
it -> display();
}
}
//définition de la méthode initData
void school::initData(){
nbTopics = 3;
nbStuds = 0;
topics.push_back("Math");
topics.push_back("Info");
topics.push_back("Comm");
dataFile = "data.txt";
}
//définition de la méthode addStudent
void school::addStudent(){
student temporaire;
cout <<"entrer le nom du nouveau eleve: ";
cin >> temporaire.nom;
for (int i = 0; i < nbTopics; i++)
{
float note(0);
cout << "entrer la note: ";
cin >> note;
temporaire.notes.push_back(note);
}
eleves.push_back(temporaire);
nbStuds++;
ready4data = true;
}
//définition de la méthode remStudent
void school::remStudent(){
if (eleves.empty())
{
cout << "rien a effacer" << endl;
return ;
}
eleves.pop_front();
cout << "l'eleve a bien ete supprime" << endl;
}
//définition de la méthode saveData
void school::saveData(){
//création du flux de sortie
ofstream outFile;
outFile.open(dataFile);
if (outFile.is_open()) {
//on enregistre le nombre de UE et d'etudiants sur le fichier
outFile << nbTopics << endl;
outFile << nbStuds << endl;
for (int i = 0; i < nbTopics; i++)
{
outFile << topics[i] << " ";
}
outFile << endl;
for (auto& itst: eleves) {
outFile << itst.nom << ' ';
outFile << endl;
for (auto& it: itst.notes){
outFile << it << ' ';
outFile << endl;
}
}
cout << "Données enregistrés avec succès!\n";
// traitement terminé
outFile.close();
}
else cout << "pb de sauvegarde " << endl;
}
//définition de la méthode readData
void school::readData(){
ifstream inFile; // création du flux d'entrée
string tstr;
float tnum;
int nbNewStuds(0);
if (ready4data==false) initData();
inFile.open(dataFile);
if (inFile.is_open()) {
inFile >> nbTopics ;
inFile >> nbNewStuds;
for (int i = 0; i < nbTopics; i++)
{
inFile >> tstr;
topics.push_back(tstr);
}
for (int i=0; i<nbNewStuds; ++i) {
// Un nouveau étudiant
student eleve;
inFile >> eleve.nom;
for (int j=0; j<nbTopics; ++j) {
float note(0.0f);
inFile >> note;
eleve.notes.push_back(note);
}
eleves.push_back(eleve);
}
cout << "Donnees lus avec succes!\n";
// traitement terminé
inFile.close();
} else
cerr << "Le fichier '" << dataFile << "' est introuvable!";
}