Cod sursa(job #709356)

Utilizator Hunter6699Szekeres Szabolcs Hunter6699 Data 8 martie 2012 00:05:10
Problema Text Scor 10
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.54 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.eof()){
		fin>>s;
		if((s>='a'&&s<='z')||(s>='A'&&s<='Z')){
			charszam++;
			ok=true;
		}else if(ok){
			szoszam++;
			ok=false;
		}
		
	}
	if (ok){
		szoszam++;
	}
	double x;
	if(!szoszam==0){
		 x=charszam/szoszam;
	}else{
		  x=0;
	}
	fout<<floor (x);
	fout.close();
	return 0;
}