From 93950b09e33ecbd8f850b7c60a421ad8132b7565 Mon Sep 17 00:00:00 2001 From: Sami GHEBRID Date: Thu, 15 Dec 2022 09:08:37 +0100 Subject: [PATCH] Menu Candidat 15/12 9h08 --- Ssae.c | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Ssae.c b/Ssae.c index 51068e8..5480f85 100644 --- a/Ssae.c +++ b/Ssae.c @@ -3,7 +3,7 @@ void menuAdmin(VilleIUT *tiut[], int *tLog, int tMax){ int select=0; while(select!=9){ - system("clear") + system("clear"); printf("\t AFFICHAGE ADMIN\n\n"); printf("1\tModifier le nombre de places dans un département\n"); printf("2\tCréer un nouveau département\n"); @@ -11,9 +11,24 @@ void menuAdmin(VilleIUT *tiut[], int *tLog, int tMax){ printf("4\tLancer/Arrêter la phase de candidature\n"); printf("5\tModifer le nom du responsable d'un département\n"); scanf("%d",&select); + } +} +void menuCandidat(VilleIUT *tiut[], int *tLog, int tMax){ + int select=0; + while(select!=9){ + system("clear"); + printf("\t AFFICHAGE CANDIDAT \n\n"); + printf("1\tRechercher les villes où il y a un IUT\n"); + printf("2\tRechercher chaque département dans les IUT\n"); + printf("3\tNombres de places en 1A\n"); + printf("4\tRechercher un département dans les IUT\n"); + scanf("%d",&select); } } + + + void clearpage(void) { char entre;