Cod sursa(job #355760)

Utilizator eu93Marian S eu93 Data 12 octombrie 2009 08:35:50
Problema Text Scor 0
Compilator cpp Status done
Runda CNRV #2 Marime 0.26 kb
#include <fstream.h>
int main()
{ char c;
int k=0,s=0,p=0;
ifstream f("text.in");
ofstream g("text.out");
while (f>>c) { g<<c;
    if (c==char(" ")) p++;
	else if (isalpha(c)) k++;  
	else {s+=k;k=0; }
}
g<<s/p;
f.close();
g.close();
return 0;
}