Cod sursa(job #277719)
Utilizator | Data | 11 martie 2009 21:10:23 | |
---|---|---|---|
Problema | Bowling | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream.h>
int main()
{
int n,i;
ifstream f("bowling.in");
ofstream g("bowling.out");
f>>n;
for(i=1;i<=n;i++)
g<<"Fumeanu"<<"\n";
f.close ();
g.close ();
return 0;
}