Cod sursa(job #526279)
Utilizator | Data | 27 ianuarie 2011 22:14:58 | |
---|---|---|---|
Problema | Text | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.53 kb |
#include <fstream>
#include <string>
using namespace std;
int main ()
{
string s, c="abcdefghijklmnopqrstuvwyzABCDEFGHIJKLMNOPQRSTUVWYZ";
bool cuvant=false;
int t=0,v=0,tf=0;
ifstream f ("Text.in");
ofstream g ("Text.out");
for (int i=0; !f.eof() ; i++)
{
s+=f.get();
if ((s[i]<=90 && s[i]>=65) || (s[i]>=97 && s[i]<=122))
cuvant=true;
else
{
cuvant=false;
if (t>0) v++;
tf+=t;
t=0;
}
if (cuvant==true)
{
t++;
}
}
g<<tf/v;
g.close();
return 0;
}