Mise à jour des fonctions de recherche

master
Nicolas BLONDEAU 2 years ago
parent 06ad465a2c
commit 53899190e7

@ -20,6 +20,7 @@ typedef enum {faux,vrai}Booleen;
//Menu utilisateur :
void MenuUtilisateur(VilleIUT *tiut[],int n);
int rechercheIUT(VilleIUT *tiut[],int n);
int rechercheDept(VilleIUT *tiut[], int n);
//Menu administrateur :
void MenuAdministrateur(VilleIUT *tiut[],int n);

@ -12,6 +12,8 @@ void MenuUtilisateur(VilleIUT *tiut[], int n){
succes = rechercheIUT(tiut, n);
}
if(choix==2){
succes = rechercheIUT(tiut, n);
if(succes==0
//creer departemement
/*printf("\ndepartement :");
scanf("%s",departement);
@ -30,6 +32,9 @@ void MenuUtilisateur(VilleIUT *tiut[], int n){
if(choix==5){
return;
}
if(succes != 0){
//something
}
}
int rechercheIUT(VilleIUT *tiut[], int n){
@ -41,11 +46,12 @@ int rechercheIUT(VilleIUT *tiut[], int n){
if(strcmp(tiut[i]->ville, rech)==0){
printf("Il y a un IUT à %s.\n", rech);
trouve = 1;
return 1;
}
else if(i==n-1)
printf("Il n'y pas d'IUT dans votre ville.");
}
return 2;
return 0;
}
int rechercheDept(VilleIUT *tiut[], int n){
@ -60,7 +66,7 @@ int rechercheDept(VilleIUT *tiut[], int n){
trouve = 1;
}
else if(i==n-1)
printf("Il n'y pas d'IUT dans votre ville.");
printf("Aucun département trouvé, il n'y pas d'IUT dans votre ville.");
}
return 2;
return 0;
}

Loading…
Cancel
Save