1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
| #include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<string.h>
#include<ctype.h>
#define TAILLE 30
#define FICHIER "text.txt"
typedef struct date
{
int mois;
int jour;
int annee;
}date;
typedef struct prestation
{
char * ville;
char * designation;
date datedebut ;
date datefin ;
int prix;
int nbplaces ;
struct prestation * psuivante;
}prestation;
typedef struct ville
{
char nomVille[25];
prestation * listeprestations;
}ville;
date SaisieDatedebut()
{
prestation pp;
printf(" \tDonner la date de debut de la prestation :\n");
do
{
printf(" \tJour:(jj)\t");
scanf("%d",&pp.datedebut.jour);
}while((pp.datedebut.jour<=0)||(pp.datedebut.jour>31));
do
{
printf(" \tMois:(mm)\t");
scanf("%d",&pp.datedebut.mois);
}while((pp.datedebut.mois<=0)||(pp.datedebut.mois>12));
do
{
printf(" \tAnnee:(aaaa)\t");
scanf("%d",&pp.datedebut.annee);
}while((pp.datedebut.annee<=1930)||(pp.datedebut.annee>2010));
return pp.datedebut;
}
date SaisieDatefin()
{
prestation pp;
printf(" \tDonner la date de fin de la prestation : \n");
do
{
printf(" \tJour:(jj)\t");
scanf("%d",&pp.datefin.jour);
}while((pp.datefin.jour<=0)||(pp.datefin.jour>31));
do
{
printf(" \tMois:(mm)\t");
scanf("%d",&pp.datefin.mois);
}while((pp.datefin.mois<=0)||(pp.datefin.mois>12));
do
{
printf(" \tAnnee:(aaaa)\t");
scanf("%d",&pp.datefin.annee);
}while((pp.datefin.annee<=1930)||(pp.datefin.annee>2010));
return pp.datefin;
}
ville T[TAILLE];
int n=0;
int ajouterprestation(char * nomV, char * designation, int prix, int nbplaces)
{
int n=0;
int b ;
int i;
prestation *Npres=(prestation*) malloc(sizeof(prestation));
if(Npres==NULL) return 0;
strcpy(Npres->designation,designation);
Npres->ville=nomV;
Npres->prix=prix;
Npres->nbplaces=nbplaces;
Npres->datedebut=SaisieDatedebut();
Npres->datefin=SaisieDatefin();
Npres->psuivante=NULL;
for(i=0;i<n;i++){
if(!strcmp(T[i].nomVille,nomV))
break;
if(i<n) //ville existe déjà
{
prestation *p=T[i].listeprestations;
while(p->psuivante!=NULL)
{ p=p->psuivante;}
p->psuivante=Npres;
FILE *f;
f=fopen(FICHIER,"w");
fprintf(f,"%s,%s,%d,%d",Npres->ville, Npres->designation, Npres->prix, Npres->nbplaces);
fclose(f);
return 1;
}
else //ville n'existe pas
{ printf("h");
if(n==TAILLE) //il n y a plus d'espace pour inserer une nouvelle ville
{
free(Npres);
return 0;
}
strcpy(T[i].nomVille,nomV);
T[i].listeprestations=Npres;
n++;
FILE *f;
f=fopen(FICHIER,"w");
fprintf(f,"%s,%s,%d,%d",Npres->ville, Npres->designation, Npres->prix, Npres->nbplaces);
fclose(f);
return 1;}
}} |
Partager