Pagini recente » Cod sursa (job #917137) | Cod sursa (job #892269) | Cod sursa (job #1929571) | Cod sursa (job #1537419) | Cod sursa (job #921230)
Cod sursa(job #921230)
#include <fstream>
#include <cstring>
using namespace std;
ifstream f("text.in");
ofstream g("text.out");
int main() {
char c[102400];
long long st,sct;
bool aux;
st=sct=0;
f>>c;
while(!f.eof()) {
long long s=0;
aux=0;
for(long long 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;
}