15 lines
211 B
C++
15 lines
211 B
C++
#include <iostream>
|
|
|
|
#include "functions.h"
|
|
|
|
using namespace std;
|
|
|
|
int main() {
|
|
float a, b, c;
|
|
|
|
cout << "Entrez a, b, c" << endl;
|
|
cin >> a >> b >> c;
|
|
|
|
ordreCroissant(a, b, c);
|
|
return 0;
|
|
} |