Cod sursa(job #805757)

Utilizator AndreilAndrei Lecu Andreil Data 1 noiembrie 2012 08:51:33
Problema Text Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.27 kb
#include<fstream.h>
#include<string.h>
ifstream fin("text.in");
ofstream fout("text.out");
char s[1048576],*p;
int l,n;
int main(){
fin.get(s,1048576);
p=strtok(s,"-, ;:.!?");
while(p)
{
	n++;
	l=l+strlen(p);
	p=strtok(NULL,"-, ;:.!?");
}
fout<<l/n;
return 0;
}