Cod sursa(job #997455)

Utilizator StanAndreiAndrei Stan StanAndrei Data 14 septembrie 2013 10:10:55
Problema Text Scor 40
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.63 kb
#include <stdio.h>
#include <string.h>

using namespace std;

char S[1000005];
int LEN,NRLIT,NRCUV;

int main()
{
    freopen ("text.in","r",stdin);
    freopen ("text.out","w",stdout);

    fgets(S,1000005,stdin);
    LEN=strlen(S);
    int i,ok=0;
    for (i=0;i<LEN;i++)
    {
        if ((S[i]>='a' && S[i]<='z') || (S[i]>='A' && S[i]<='Z'))
            NRLIT++,ok=1;
        else
            if (ok)
            {
                ok=0;
                NRCUV++;
            }
    }
    if (ok) NRCUV++;
    int med=NRLIT/NRCUV;
    printf("%d\n",med);

    fclose(stdin);
    fclose(stdout);
    return 0;
}