Pagini recente » Cod sursa (job #2269950) | Cod sursa (job #3258495) | Cod sursa (job #2705929) | Cod sursa (job #2831302) | Cod sursa (job #1873056)
#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();
}