-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.c
388 lines (332 loc) · 12.5 KB
/
Index.c
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
#include <stdio.h>
#include <string.h>
//Global Variables
int NMBR_T = 0;
enum Priorite{
HAUTE ,
MOYENNE ,
BASSE ,
};
//Les stricture
struct date {
int day;
int month;
int year;
};
typedef struct {
char tache_name[50];
char description[100];
enum Priorite priority;
struct date tacheDate;
}Taches;
//founction de ajouter Une taches
void AjouterUnTache( Taches tache[]) {
printf("Le nom de tache:\n ");
scanf(" %[^\n]s", tache[NMBR_T].tache_name);
printf("+ La Description :\n");
scanf(" %[^\n]s", tache[NMBR_T].description);
printf("La Priorite (0: HAUTE, 1: MOYENNE, 2: BASSE) : ");
scanf("%d", &tache[NMBR_T].priority);
printf("+ La Date (format: day/month/year) :\n");
scanf("%d/%d/%d", &tache[NMBR_T].tacheDate.day, &tache[NMBR_T].tacheDate.month, &tache[NMBR_T].tacheDate.year);
while (getchar() != '\n');
// pour incrementer la valeur de Nombre des taches
NMBR_T++;
}
//founction de ajouter des taches
void AjouterPlusieurs(Taches tache[], int nombreTaches) {
if (NMBR_T + nombreTaches > 50) {
printf("Il n'y a pas assez d'espace pour ajouter autant de taches.\n");
} else {
for (int i = 0; i < nombreTaches; i++) {
printf("Tache %d\n",i+1);
printf("Le nom de la tache :\n ");
scanf(" %[^\n]s", tache[NMBR_T + i].tache_name);
printf("+ La Description :\n");
scanf(" %[^\n]s", tache[NMBR_T + i].description);
printf("La Priorite (0: HAUTE, 1: MOYENNE, 2: BASSE) : ");
scanf("%d", &tache[NMBR_T + i].priority);
printf("+ La Date (format: day/month/year) :\n");
scanf("%d/%d/%d", &tache[NMBR_T + i].tacheDate.day, &tache[NMBR_T + i].tacheDate.month, &tache[NMBR_T + i].tacheDate.year);
while (getchar() != '\n');
}
NMBR_T += nombreTaches;
}
}
//La fonction de Affichage
void Affichage( Taches tache[]) {
if (NMBR_T < 1) {
printf("Pas des taches a afficher\n");
} else {
printf("\n\t\t\t\t\t\t:::::::::::::::::::::::::");
printf("\n\t\t\t\t\t\t\tTO DO LIST");
printf("\n\t\t\t\t\t\t:::::::::::::::::::::::::\n");
printf("+----+-------------------------+-------------------------------+------------------+----------------------+\n");
printf("| ID | Nom de la tache | Description | Priorite | Date d'echeance |\n");
printf("+----+-------------------------+-------------------------------+------------------+----------------------+\n");
for (int i = 0; i < NMBR_T; i++) {
printf("| %-2d | %-23s | %-29s | %-16s | %02d/%02d/%04d |\n",i + 1, tache[i].tache_name, tache[i].description,
(tache[i].priority == HAUTE) ? "HAUTE" : (tache[i].priority == MOYENNE) ? "MOYENNE" : "BASSE",
tache[i].tacheDate.day, tache[i].tacheDate.month, tache[i].tacheDate.year);
printf("+----+-------------------------+-------------------------------+------------------+----------------------+\n");
}
}
}
void Modifier( Taches tache[], int N) {
int choix;
char Newname[50];
char NewDescription[100];
int priorite;
struct date newDate;
if (N >= 1 && N <= NMBR_T) {
printf("::::::::: Que voulez vous modifier :::::::\t\n");
printf(":: < 1 > Le nom de tache ::\n");
printf(":: < 2 > La description ::\n");
printf(":: < 3 > La priorite. ::\n");
printf(":: < 4 > La date ::\n");
printf(":: < 0 > Retour/Menu precedent ::\n");
printf("::::::::::::::::::::::::::::::::::::::::::\t\n");
printf("\n");
printf("Entrer Votre choix : ");
scanf("%d", &choix);
switch (choix) {
case 0:
printf("Vous avez quitte !\n");
break;
case 1:
printf("Entrer le nouveau nom de la tache : ");
scanf(" %[^\n]s", Newname);
strcpy(tache[N - 1].tache_name, Newname);
printf("Le nom de la tache %d a ete modifie avec succes.\n", N);
break;
case 2:
printf("Entrer la nouvelle description : ");
scanf(" %[^\n]s", NewDescription);
strcpy(tache[N - 1].description, NewDescription);
printf("La description de la tache %d a ete modifiee avec succes.\n", N);
break;
case 3:
printf("Entrer la nouvelle priorite (0: HAUTE, 1: MOYENNE, 2: BASSE) : ");
scanf("%d", &priorite);
tache[N - 1].priority = priorite;
printf("La priorite de la tache %d a ete modifiee avec succes.\n", N);
break;
case 4:
printf("Entrer la nouvelle date (format: day/month/year) : ");
scanf("%d/%d/%d", &newDate.day, &newDate.month, &newDate.year);
tache[N - 1].tacheDate = newDate;
printf("La date de la tache %d a ete modifiee avec succes.\n", N);
break;
default:
printf("Choix invalide.\n");
break;
}while (choix!=0);
}
else {
printf("Numero de tache invalide.\n");
}
}
//La function supprimer
void Supprimer( Taches tache[]) {
int pos;
printf("Entrez le ID de la tache a supprimer : ");
scanf("%d", &pos);
// Validation
if (pos >= 1 && pos <= NMBR_T) {
for (int i = pos - 1; i < NMBR_T - 1; i++) {
tache[i] = tache[i + 1];
}
NMBR_T--;
printf("La tache %d a ete supprimee avec succes.\n", pos);
} else {
printf("Numero de tache invalide.\n");
}
}
//La function de triee croissant
void trieeCroissant( Taches tache[]) {
if (NMBR_T > 0) {
for (int i = 0; i < NMBR_T; i++) {
for (int j = i + 1; j < NMBR_T; j++) {
// Comparer les annee et le moins et le jours
if (tache[i].tacheDate.year > tache[j].tacheDate.year || (tache[i].tacheDate.year == tache[j].tacheDate.year && tache[i].tacheDate.month > tache[j].tacheDate.month)
|| (tache[i].tacheDate.year == tache[j].tacheDate.year && tache[i].tacheDate.month == tache[j].tacheDate.month && tache[i].tacheDate.day > tache[j].tacheDate.day))
{
// changer les elements
Taches temp = tache[i];
tache[i] = tache[j];
tache[j] = temp;
}
}
}
}Affichage(tache);
}
//La function de triee decroissant
void trieeDecroissant(Taches tache[]) {
if (NMBR_T > 0) {
for (int i = 0; i < NMBR_T; i++) {
for (int j = i + 1; j < NMBR_T; j++) {
// Comparer les annee et le mois et le jour
if (tache[i].tacheDate.year < tache[j].tacheDate.year ||
(tache[i].tacheDate.year == tache[j].tacheDate.year && tache[i].tacheDate.month < tache[j].tacheDate.month) ||
(tache[i].tacheDate.year == tache[j].tacheDate.year && tache[i].tacheDate.month == tache[j].tacheDate.month && tache[i].tacheDate.day < tache[j].tacheDate.day)) {
// changer les elements
Taches temp = tache[i];
tache[i] = tache[j];
tache[j] = temp;
}
}
}
}
Affichage(tache);
}
void FiltrerParPriorite( Taches tache[]) {
int N;
printf("Choisir une priorite (0: HAUTE, 1: MOYENNE, 2: BASSE) : ");
scanf("%d", &N);
int found = 0;
printf("\n\t\t\t\t\t\t:::::::::::::::::::::::::");
printf("\n\t\t\t\t\t\t\tTO DO LIST");
printf("\n\t\t\t\t\t\t:::::::::::::::::::::::::\n");
printf("+----+-------------------------+-------------------------------+------------------+------------------+\n");
printf("| ID | Nom de la tache | Description | Date d'echeance | Priorite |\n");
printf("+----+-------------------------+-------------------------------+------------------+------------------+\n");
for (int i = 0; i < NMBR_T; i++) {
if (tache[i].priority == N) {
printf("| %-2d | %-23s | %-29s |", i + 1, tache[i].tache_name, tache[i].description);
printf(" %02d/%02d/%04d |", tache[i].tacheDate.day, tache[i].tacheDate.month, tache[i].tacheDate.year);
switch (N) {
case HAUTE:
printf(" HAUTE |\n");
break;
case MOYENNE:
printf(" MOYENNE |\n");
break;
case BASSE:!
printf(" BASSE |\n");
break;
default:
printf(" Inconnue |\n");
}
printf("+----+-------------------------+-------------------------------+------------------+------------------+\n");
found = 1;
}
}
if (!found) {
printf("Aucune tache avec la priorite %d n'a ete trouvee.\n", N);
}
}
//La function de Menu
void Menu( Taches tache[]) {
int choix;
printf("\n");
do{
printf(":::::::::::::::::< Menu >:::::::::::::::::\t\n");
printf(":: < 1 > Ajouter une Tache. ::\n");
printf(":: < 2 > Afficher la Liste des Taches. ::\n");
printf(":: < 3 > Modifier une Tache. ::\n");
printf(":: < 4 > Supprimer une Tache. ::\n");
printf(":: < 5 > Ordonne les Tache. ::\n");
printf(":: < 6 > filtrer les Tache. ::\n");
printf(":: < 7 > Quitter. ::\n");
printf("::::::::::::::::::::::::::::::::::::::::::\t\n");
printf("\n");
printf("==> Saisir Votre Choix : ");
scanf("%d",&choix);
switch(choix){
int nombreTaches;
int nbr;
case 1:
// Ajouter
printf("(1) Ajouter une tache.\n");
printf("(2) Ajouter plusieurs taches.\n");
printf("==> Saisir Votre Choix : ");
scanf("%d", &nbr);
switch (nbr) {
case 1:
AjouterUnTache(tache);
break;
case 2:
printf("Entrez le nombre de taches a ajouter : ");
scanf("%d", &nombreTaches);
// Call AjouterPlusieurs
AjouterPlusieurs(tache, nombreTaches);
break;
default:
printf("Choix invalide. Entrer un choix entre 1 et 2!\n");
break;
}
break;
case 2:
//Affichage
Affichage(tache);
break;
case 3: {
// Modifier
if (NMBR_T < 1) {
printf("\t\"Pas des taches pour modifier!!\"\n");
break;
}
else{int N;
Affichage(tache);
printf("Entrer le ID de la tache : ");
scanf("%d", &N);
Modifier(tache, N);
break;}
}
break;
case 4:{
//Supprimer
if (NMBR_T < 1) {
printf("\t\"Pas des taches pour Supprimer!!\"\n");
break;
}else
Affichage(tache);
Supprimer(tache);
break;
}
case 5:{
//Triee
if (NMBR_T < 1) {
printf("\t\"Pas des taches a Ordoner!!\"\n");
break;
}else{
int Triee ;
printf("croissant (1) \t decroissant (2) \n");
printf("=> Saisir Votre Choix : ");
scanf("%d",&Triee);
switch (Triee)
{
case 1:
trieeCroissant(tache);
break;
case 2:
trieeDecroissant(tache);
break;
default:
printf("Choix invalide. Entrer un choix entre 1 et 2!\n");
break;
}
break;
}
}
case 6:
//Filtrer Par Priorite
if (NMBR_T < 1) {
printf("\t\"Pas des taches a filtrer!!\"\n");
break;
}else
FiltrerParPriorite(tache);
break;
case 7:
printf("Programme termine.\n");
break;
default:
printf("Choix invalide. Entrer un choix entre 1 et 7!\n");
}
} while( choix != 7);
}
int main(){
char choix;
Taches task[50];
Menu(task);
}