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.
20 lines
361 B
20 lines
361 B
#include "tp7.h"
|
|
|
|
void testRemplir(void)
|
|
{
|
|
int max, res;
|
|
int tMatieres[150] = {0}, tCoeff[150] = {0};
|
|
printf("Donnez une valeur physique pour le tableau :");
|
|
scanf("%d", &max);
|
|
res = remplirTableaux(tMatieres, tCoeff, max);
|
|
printf("res : %d\n", res);
|
|
}
|
|
|
|
|
|
int main (void)
|
|
{
|
|
//testRemplir();
|
|
gestionMatieres();
|
|
//remplirTableaux();
|
|
return 0;
|
|
} |