lab.cpp/ex4.cpp

25 lines
457 B
C++
Raw Permalink Normal View History

2016-03-04 07:49:31 +00:00
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
using namespace std;
/* [1] Lecture de fichier
=========================================================*/
int main(){
// On instancie notre stream
ofstream fichier("ex4/ex4.txt");
// On verifie qu'il n'y a aucune erreur
if( !fichier ) return -1;
fichier << "MON FICHIER ECRIT !!!" << endl;
fichier << "Hehe" << endl << endl;
fichier << "Cool!" << endl;
return 0;
}