Cod sursa(job #666885)

Utilizator alexxx92Toader Alexandru alexxx92 Data 22 ianuarie 2012 13:45:08
Problema Text Scor 50
Compilator c Status done
Runda Arhiva de probleme Marime 0.33 kb
#include<stdio.h>
#include<string.h>

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

    char c;
    int lit=0, cuv=1;
    while((c=getchar())!=EOF)
    {
        if (c>='A' && c<='z') lit++;
        else if (c==' ') cuv++;
    }

    printf("%d", lit/cuv);
    return 0;
}