1#include <iostream>
2#include <fstream>
3#include <string>
4using namespace std;
5
6int main()
7{
8 ifstream fichier("YOUR_FILE");
9
10 if(fichier) {
11 string ligne;
12
13 while(getline(fichier, ligne)) {
14 cout << ligne << endl;
15 }
16 } else {
17 cout << "ERREUR: Impossible d'ouvrir le fichier en lecture." << endl;
18 }
19 return 0;
20}