|
|
|
@ -46,7 +46,7 @@ int AjoutAdherent(int tNoCarte[], int tAge[], int tPointsCarte[], int tCarteActi
|
|
|
|
|
printf("Vous voulez créer un nouvel adhérent.\n");
|
|
|
|
|
printf("Donnez l'âge de l'adhérent : ");
|
|
|
|
|
scanf("%d", &age);
|
|
|
|
|
pas = RechercheAjoutAdherent(tNoCarte, nbElem, noCarte);
|
|
|
|
|
pas = RechercheAjoutAdherent(tNoCarte, nbElem);
|
|
|
|
|
if (j == tMax)
|
|
|
|
|
{
|
|
|
|
|
printf("Tableau plein, impossible d'ajouter un adhérent.\n"); /* Pas besoins de le mettre dans la boucle for */
|
|
|
|
@ -114,7 +114,7 @@ int SupprimerAdherent(int tNoCarte[], int tAge[], int tPointsCarte[], int tCarte
|
|
|
|
|
int pas, i, noCarte, trouve;
|
|
|
|
|
printf("Entrez le numéro de la carte de l'adhérent recherché : ");
|
|
|
|
|
scanf("%d", &noCarte);
|
|
|
|
|
pas = RechercheAdherent(tNoCarte, nbElem, noCarte, &trouve);
|
|
|
|
|
pas = RechercheAdherent(tNoCarte, nbElem, &trouve);
|
|
|
|
|
if (trouve == 1)
|
|
|
|
|
{
|
|
|
|
|
for (i = pas; i < nbElem - 1 ; i++)
|
|
|
|
@ -151,7 +151,7 @@ void ModificationActivationCarte(int tNoCarte[], int tCarteActive[], int nbElem)
|
|
|
|
|
int noCarte, trouve, pas, choix, choixRaison;
|
|
|
|
|
printf("Entrez le numéro de la carte de l'adhérent recherché : ");
|
|
|
|
|
scanf("%d", &noCarte);
|
|
|
|
|
pas = RechercheAdherent(tNoCarte, nbElem, noCarte, &trouve);
|
|
|
|
|
pas = RechercheAdherent(tNoCarte, nbElem, &trouve);
|
|
|
|
|
if (trouve == 1)
|
|
|
|
|
{
|
|
|
|
|
printf("\nQue voulez-vous faire ?\n1.\tActiver la carte\n2.\tDésactiver la carte\n");
|
|
|
|
|