Pagini recente » Cod sursa (job #3288782) | Cod sursa (job #2481807) | Cod sursa (job #2038722) | Cod sursa (job #1452363) | Cod sursa (job #3159709)
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
ifstream fin("text.in");
ofstream fout("text.out");
string s;
bool IsLetter (char c) {
return ('a' <= c && c <= 'z') || ('A' <= c && c <= 'Z');
}
int main() {
getline(fin, s);
long long wordLen = 0;
long long wordCount = 0;
bool shouldBeNewWord = true;
for (char c : s) {
if (isalpha(c)) {
if (shouldBeNewWord) {
wordCount++;
shouldBeNewWord = false;
}
wordLen++;
}
else {
shouldBeNewWord = true;
}
}
fout << wordLen / wordCount << '\n';
return 0;
}