Cod sursa(job #503954)

Utilizator allexx2200Atanasiu Alexandru-Marian allexx2200 Data 25 noiembrie 2010 21:18:50
Problema Text Scor 40
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.33 kb
#include<iostream.h>
#include<fstream.h>
#include<string.h>
int main()
{
	fstream f("text.in", ios::in);
	fstream g("text.out", ios::out);
	char a[1000]; 
	char * b;
	int c,Ch;
	f.get(a,1000);
	Ch=0; c=0;
	b=strtok(a, " ,.!?-");
	while(b!=NULL)
	{
		Ch=Ch+strlen(b);
		c++;
		b=strtok(NULL, " ,.!?-");
	}
	g<<Ch/c;
}