Cod sursa(job #2243314)

Utilizator bori2000Fazakas Borbala bori2000 Data 20 septembrie 2018 11:59:49
Problema Text Scor 70
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.62 kb
#include <iostream>
#include <fstream>
#include <math.h>
#include <string>


using namespace std;

int main()
{
    ifstream f("text.in");
    ofstream g("text.out");

    string s;
    bool found=false;
    char x;
    int karak=0;
    int szodb=0;

    while(f>>s)
    {
        found=false;
        for(int i=0; i<=s.length()-1; i++)
        {
            x=s[i];
            if((x>='a' and x<='z') or (x>='A' and x<='Z'))
            {
                found=true;
                karak++;
            }
        }
        if(found) szodb++;
    }

    g<<(int)karak/szodb<<endl;

    return 0;
}