Cod sursa(job #921211)
Utilizator | Data | 20 martie 2013 20:51:54 | |
---|---|---|---|
Problema | Text | Scor | 90 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.6 kb |
#include <fstream>
#include <cstring>
using namespace std;
ifstream f("text.in");
ofstream g("text.out");
int main() {
char c[256];
int st,sct;
bool aux;
st=sct=0;
f>>c;
while(!f.eof()) {
int s=0;
aux=0;
for(int i=0;i<strlen(c);i++)
if((c[i]>='a'&&c[i]<='z')||(c[i]>='A'&&c[i]<='Z')) {
s++;
if(!aux)
sct++;
aux=1;
} else
aux=0;
st+=s;
//if(s)
// sct++;
f>>c;
}
g<<st/sct;
}