1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #include <iostream>
- #include "entierlong.h"
- #include "utilitaires.h"
- #include "lit_ecrit.h"
- using namespace std;
- int main()
- {
- /// Début
- // Annonce
- cout << "Hello world!" << endl;
- // Variables
- int a;
- EntierLong b;
- // Utilisateur
- cout << "Rentrez a : ";
- cin >> a;
- /// Traitement
- // Conversion
- b = conversionEntier(a);
- // Affichage
- cout << "Voici b :" << endl;
- AfficheEntierLong(b);
- /*bool estCeQueJeMappelleJovian;
- estCeQueJeMappelleJovian = true; // true
- if (estCeQueJeMappelleJovian)
- {
- cout << "Il s'appelle Jovian !" << endl;
- }
- else
- {
- cout << "Il ne s'appelle pas Jovian !" << endl;
- }*/
- return 0;
- }
|