Cod sursa(job #709364)

Utilizator Hunter6699Szekeres Szabolcs Hunter6699 Data 8 martie 2012 00:10:58
Problema Text Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.44 kb
#include <iostream>
#include <string>
#include <fstream>
#include <math.h>
using namespace std;

int main(){
	ifstream fin("text.in");
	ofstream fout("text.out");
	char s;
	int charszam=0,szoszam=0;
	bool ok=false;
	while(fin.get(s)){
		if((s>='a'&&s<='z')||(s>='A'&&s<='Z')){
			charszam++;
			ok=true;
		}else if(ok){
			szoszam++;
			ok=false;
		}
		
	}
	fin.close();
	fout<<charszam/szoszam;
	fout.close();
	return 0;
}