Forked from
Info 111 Programmation Impérative / 2023-2024 / Semaine10
2 commits behind the upstream repository.
-
Nicolas M. Thiéry authoredNicolas M. Thiéry authored
programme2.cpp 228 B
#include <iostream>
using namespace std;
#include "max.hpp"
int main() {
cout << "Entrez a et b:" << endl;
int a, b;
cin >> a >> b;
cout << "Le maximum est: "
<< monMax(a, b) << endl;
return 0;
}