Cod sursa(job #1577600)

Utilizator popasergiu99Popa Sergiu-Nicolae popasergiu99 Data 23 ianuarie 2016 16:30:44
Problema Text Scor 20
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.54 kb
#include <iostream>
#include <fstream>
#include <string.h>
using namespace std;

int main()
{
    ifstream f ("text.in");
    ofstream g ("text.out");
   char s[10000],sep[]=" -+&%$#@)(?!;:'*~`|][}{=><,.",*p,l[]="qwertyuioplkjhgfdsazxcvbnmQWERTYUIOPLKJHGFDSAZXCVBNM";
   f.getline(s,10000);
   int i,k=0,m=0,z;
   for (i=0;i<strlen(s);i++)
       {
           if (strchr(l,s[i]));
            m++;
       }
   p=strtok(s,sep);
   while (p)
   {
       k++;

       p=strtok(NULL,sep);
   }
   z=m/k;
   g<<z;
   g.close();
}