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.
11 lines
552 B
11 lines
552 B
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int remplirTableaux(int tMatieres[],int tCoeff[],int max);
|
|
void affichage(int tMatieres[],int tCoeff[],int nbMatieres);
|
|
void gestionMatieres(void);
|
|
int rechercherMatiere(int tMatieres[], int i, int matieres, int *trouve);
|
|
int modificationCoefficient(int tMatieres[], int tCoeff[], int nbMatieres);
|
|
int sauvegarde(int tMatieres[], int tCoeff[], int nbMatieres);
|
|
int insertionNewMatiere(int tMatieres[], int tCoeff[], int nbMatieres, int max);
|
|
int suppressionMatiere(int tMatieres[], int tCoeff[], int nbMatieres); |