|
|
|
@ -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;
|
|
|
|
|
}
|
|
|
|
|