First commit
This commit is contained in:
13
IUT/Info1/TD/Exercices/6.8.1_polynome/main.cpp
Normal file
13
IUT/Info1/TD/Exercices/6.8.1_polynome/main.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <iostream>
|
||||
|
||||
#include "fonction.h"
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
double a, b, c;
|
||||
|
||||
cout << "Entrez a, b, c" << endl;
|
||||
cin >> a >> b >> c;
|
||||
|
||||
calcul_racines(a, b, c);
|
||||
}
|
||||
Reference in New Issue
Block a user