BUT2/DEV/DEV1.1/TP_OrganisationCode/exo1/option.c
2023-10-23 13:23:36 +02:00

21 lines
424 B
C

#include <stdlib.h>
#include <stdio.h>
#include "personne.h"
#include "repertoire.h"
options saisir_option() {
short o;
printf("\nChoisissez une option :\n");
printf("1] Ajouter une personne.\n");
printf("2] Afficher le repertoire.\n");
printf("3] Sortir\n");
printf("? ");
scanf("%hd", &o);
switch(o) {
case 1 : return AJOUTER;
case 2 : return AFFICHER;
case 3 : return SORTIR;
default : return AFFICHER;
}
}