Cod sursa(job #517159)

Utilizator valentina506Moraru Valentina valentina506 Data 27 decembrie 2010 23:40:29
Problema Text Scor 40
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.34 kb
#include<fstream>
using namespace std;
int lg,nrc;
char s[300],*p,sep[]={' ','-','!','?',':',';','.',']','[','(',')','|','/'};
int main()
{
	ifstream f("text.in");
	ofstream g("text.out");
	f.getline(s,300);
	p=strtok(s,sep);
	while(p)
	{
		//g<<p<<"\n";
		nrc++;
		lg+=strlen(p);
		p=strtok(NULL,sep);
		
	}
	g<<lg/nrc;
	return 0;
}