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.

26 lines
495 B

#include <stdio.h>
#include "iut.h"
int main(){
VilleIUT V;
int n;
VilleIUT *tiut[200];
afficher(V);
n=chargeResultat(tiut ,200);
n=(n+1)/4;
printf("%d",n);
affichage(tiut,n);
int choix;
printf("\n\nUtilisateur - 1\tAdministrateur - 2\n\n");
scanf("%d",&choix);
if(choix==1){
printf("Menu Utilisateur");
//MenuUtilisateur();
}
if(choix==2){
printf("Menu Administrateur");
//MenuAdministrateur(V);
}
}