You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
345 B

#include "../Partie_3/partie_3.h"
int MenuRespAdminDept(void)
{
int choix;
printf("\nMenu des Responsables d'Admission des Candidatures\n");
printf("1. Modifier la note minimum des refus\n");
printf("2. Modifier le nombre d'admis max");
printf("3. Trier la liste d'attente");
scanf("%d", &choix);
return choix;
}