Cod sursa(job #1933796)

Utilizator alex273Groza Alexandru alex273 Data 20 martie 2017 22:28:41
Problema Text Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.26 kb
#include <fstream>
using namespace std; 
ifstream f("text.in");
ofstream g("text.out");
long long w,n;
char c;
bool k;
int main (){
while (f.get (c)) {
if ( c>='a',c <='z' || c>='A',c <='Z' ){
n++; k=1;
}else
if (k) w++;k=0;}
return 0;
g<<n/w;
f.close (); g.close();
}