91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

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
永嘉县| 吉水县| 株洲县| 云浮市| 罗平县| 义马市| 乐清市| 和硕县| 清远市| 山西省| 合山市| 双江| 北安市| 昭通市| 双城市| 通海县| 哈密市| 乌鲁木齐市| 弋阳县| 宁津县| 长葛市| 县级市| 靖宇县| 江都市| 滨海县| 灯塔市| 隆林| 错那县| 措勤县| 鱼台县| 邓州市| 临猗县| 屏东县| 鄢陵县| 同心县| 怀化市| 舟曲县| 南丰县| 延安市| 泗阳县| 禹城市|