Pagini recente » Cod sursa (job #2956437) | Cod sursa (job #2219550) | Cod sursa (job #2967210) | Cod sursa (job #949424) | Cod sursa (job #709348)
Cod sursa(job #709348)
#include <iostream>
#include <string>
#include <fstream>
#include <math.h>
using namespace std;
int main(){
ifstream fin("text.in");
ofstream fout("text.out");
string s;
getline(fin,s);
int charszam=0,szoszam=0;
bool ok=false;
for (int i=0;i<s.length();i++){
if(((s[i]>='a')&&(s[i]<='z'))||((s[i]>='A')&&(s[i]<='Z'))){
charszam++;
ok=true;
}else if(ok){
szoszam++;
ok=false;
}
}
double x;
if(!szoszam==0){
x=charszam/szoszam;
}else{
x=0;
}
fout<<floor (x)+1;
fout.close();
}