Cod sursa(job #1758171)

Utilizator hackerinoHackerino hackerino Data 16 septembrie 2016 18:20:24
Problema Text Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.19 kb
#include <fstream>
using namespace std;ifstream fin("text.in");ofstream f("text.out");int k,m;bool l;char x;int main(){while(fin.get(x)){if(isalpha(x))k++,l=1;else if(l)l=0,m++;}f<<k/m;return 0;}