#include #include "fonction.h" using namespace std; void Affiche_réels(const float* p_f, unsigned int nb) { for (unsigned int i = 0; i < nb; i++) { cout << *p_f << endl; }; }