13 lines
192 B
C++
13 lines
192 B
C++
#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);
|
|
} |