当前位置:   article > 正文

华为机试:单词重量_华为 单词平均重量

华为 单词平均重量

题目来源

题目描述

在这里插入图片描述

题目解析

思路:

  • 求出一共有多少个字符
  • 求出一个有多少个单词

然后计算

#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
bool IsSeparator(char ch);
int CharCount(string str);
int WordCount(string sentence);
int main(int argc, char **argv)
{
    string sentence;
    while (getline(cin, sentence)) {
        if (!sentence.empty()) {
            int letterNum = CharCount(sentence);  // 统计有多少个字符
            int wordNum = WordCount(sentence);  // 统计有多少个单词
            cout << setiosflags(ios::fixed) << setprecision(2) << letterNum * 1.0 / wordNum << endl;
        }
    }
    return 0;
}
int WordCount(string sentence)
{
    int wordNum = 0;
    int len = sentence.length();
    int i = 0;
    while (true) {
        if (IsSeparator(sentence[i])) {
            while (i <= len - 1 && IsSeparator(sentence[i])) {
                i++;
            }
        }
        else if (!IsSeparator(sentence[i])) {
            wordNum++;
            while (i <= len - 1 && !IsSeparator(sentence[i])) {
                i++;
            }
        }
        if (i > len - 1) {
            break;
        }
    }
    return wordNum;
}
bool IsSeparator(char ch)
{
    if (ch == ' ' || ch == ',' || ch == '.')
        return true;
    return false;
}
int CharCount(string str)
{
    int cnt = 0;
    for (char c: str) {
        cnt += (isupper(c) || islower(c));
    }
    return cnt;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/501599
推荐阅读
相关标签
  

闽ICP备14008679号