Paste
Pasted as C++ by registered user raphael ( 3 years ago )
//auteur : Raphael De Oliveira
#include <iostream>
using namespace std;
int main()
{
for(int i=1; i<=10; i++){
cout<<"ligne "<<i<<" message fixe"<<endl;
}
return 0;
}
Revise this Paste