Cod sursa(job #489139)

Utilizator S7012MYPetru Trimbitas S7012MY Data 1 octombrie 2010 12:57:48
Problema Text Scor 90
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.31 kb
#include <cstdio>
#include <cctype>

int main()
{
	freopen("text.in","r",stdin);
	freopen("text.out","w",stdout);
	int medie=0,nrc=0,lg=0;
	char c;
	for(;!feof(stdin);) {
		scanf("%c",&c);
		if(isalpha(c)) ++medie,++lg;
		else if(lg) ++nrc,lg=0;
	}
	medie/=nrc;
	printf("%d\n",medie);
	return 0;
}