First commit
This commit is contained in:
33
IUT/Info1/TD/Exercices/10.5_tableau_boucle/tableaux.h
Normal file
33
IUT/Info1/TD/Exercices/10.5_tableau_boucle/tableaux.h
Normal 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
|
||||
);
|
||||
Reference in New Issue
Block a user