12 lines
206 B
C++
12 lines
206 B
C++
#include <iostream>
|
|
|
|
#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;
|
|
};
|
|
}
|