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.
16 lines
695 B
16 lines
695 B
#include "fonction.h"
|
|
|
|
|
|
|
|
int main(void) {
|
|
int tabAdhe[50]={0}, tabPoints[50]={0}, jour[50]={0}, mois[50]={0}, annee[50]={0}, carte[50]={0}, tailleLAdhe, tabCoutPoint[50]={0}, tabNbEntree[50]={0}, tailleLAct;
|
|
tailleLAdhe=chargementAdherent(tabAdhe,tabPoints,jour,mois,annee,carte,50);
|
|
tailleLAct=chargementActivite(tabCoutPoint, tabNbEntree, 50);
|
|
tailleLAct=50;
|
|
affichageToutActivite(tabCoutPoint, tabNbEntree, tailleLAct);
|
|
faireActivite(tabAdhe, tabPoints, tabCoutPoint, tabNbEntree, tailleLAdhe, tailleLAct);
|
|
affichageTous(tabAdhe, tabPoints, jour, mois, annee, carte, tailleLAdhe);
|
|
SauvegardeActivite(tabCoutPoint, tabNbEntree, tailleLAct);
|
|
|
|
return 0;
|
|
} |