Cod sursa(job #1873056)

Utilizator omnipedPopescu Octavian omniped Data 8 februarie 2017 19:16:59
Problema Text Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.44 kb




#include<iostream>
#include<string>
#include<fstream>
using namespace std;

int main()
{
	
	char p;
	int nr_cuvinte = 0, lungime = 0;
	ifstream fin("text.in");
	ofstream fout("text.out");

	while ( fin>>noskipws>>p)
	{
		

		if ((p >= 'A' && p <= 'Z') || (p >= 'a' && p <= 'z'))
			lungime++;
		if (p == ' ')
			nr_cuvinte++;
		
		fout << p<<endl;
	}
	fout << lungime / (nr_cuvinte + 1);
	fin.close();
	fout.close();
}