First commit

This commit is contained in:
2026-04-08 20:11:20 +02:00
parent 10fe469c10
commit 79f15536a1
861 changed files with 135610 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
unsigned int saisie_entiers(
unsigned int tab[],
unsigned int taille_reelle
);
void copie(
const unsigned int tab_in[],
unsigned int tab_out[],
unsigned int taille_pratique_in,
unsigned int taille_reelle_out
);
void afficher_tableau(
const unsigned int tab[],
unsigned int taille_pratique
);
bool sont_identiques(
const unsigned int tab1[],
const unsigned int tab2[],
unsigned int taille_pratique1,
unsigned int taille_pratique2
);
float moyenne_tableau(
const unsigned int tab[],
unsigned int taille_pratique
);
void somme_cumulee(
unsigned int tab[],
unsigned int taille_pratique
);