17 lines
217 B
C++
17 lines
217 B
C++
#include <iostream>
|
|
#include "exemple.h"
|
|
using namespace std;
|
|
|
|
|
|
int main() {
|
|
float x;
|
|
float y;
|
|
|
|
cout << "Entrez un x" << endl;
|
|
cin >> x;
|
|
|
|
y = f(x);
|
|
|
|
cout << "y = " << y << endl;
|
|
return 0;
|
|
} |