Files
CITISE1/IUT/Info1/TD/Exercices/temp/main.cpp
2026-04-08 20:11:20 +02:00

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;
}