中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++怎么統計單詞個數

c++
小億
439
2023-11-21 03:54:00
欄目: 編程語言

在C++中,可以使用以下方法來統計單詞個數:

  1. 使用字符串流(stringstream)和循環來逐個讀取單詞并計數。
#include <iostream>
#include <sstream>

int countWords(const std::string& sentence) {
    std::stringstream ss(sentence);
    std::string word;
    int count = 0;

    while (ss >> word) {
        count++;
    }

    return count;
}

int main() {
    std::string sentence = "Hello world, this is a sentence.";
    int wordCount = countWords(sentence);
    std::cout << "Word count: " << wordCount << std::endl;

    return 0;
}
  1. 使用字符串的find_first_of函數和循環來逐個找到單詞并計數。
#include <iostream>
#include <string>

int countWords(const std::string& sentence) {
    int count = 0;
    size_t pos = sentence.find_first_of(" \t\n");

    while (pos != std::string::npos) {
        count++;
        pos = sentence.find_first_of(" \t\n", pos + 1);
    }

    return count + 1;
}

int main() {
    std::string sentence = "Hello world, this is a sentence.";
    int wordCount = countWords(sentence);
    std::cout << "Word count: " << wordCount << std::endl;

    return 0;
}

這些方法可以根據空格、制表符、換行符等作為單詞的分隔符進行統計。請根據實際需求選擇使用。

0
平阴县| 蓝山县| 锡林郭勒盟| 宣化县| 景东| 夏河县| 濮阳县| 思南县| 哈巴河县| 吉首市| 红桥区| 福安市| 云南省| 巫溪县| 临漳县| 新蔡县| 新化县| 鹤峰县| 金堂县| 白朗县| 麻江县| 姚安县| 双柏县| 都匀市| 湘潭市| 宝清县| 徐水县| 云阳县| 嘉鱼县| 太仓市| 托里县| 吴川市| 承德市| 张掖市| 德化县| 个旧市| 洞头县| 温宿县| 抚远县| 巴中市| 秀山|