Mai intai trebuie sa te autentifici.
Cod sursa(job #1577554)
Utilizator | Data | 23 ianuarie 2016 15:57:29 | |
---|---|---|---|
Problema | Text | Scor | 30 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.49 kb |
#include <iostream>
#include <fstream>
#include <string.h>
using namespace std;
int main()
{
ifstream f ("text.in");
ofstream g ("text.out");
char s[1000],sep[]=" .,?!`~*)(",*p;
f.getline(s,1000);
int i,k=0,m=0;
p=strtok(s,sep);
while (p)
{
k++;
for (i=0;i<strlen(p);i++)
{
if (((p[i]>'a')&&(p[i]<'z'))||((p[i]>'A')&&(p[i]>'Z')))
m++;
}
p=strtok(NULL,sep);
}
g<<m/k;
g.close();
}