亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

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
扶风县| 新营市| 九江市| 梧州市| 阿勒泰市| 保定市| 屏东县| 十堰市| 芜湖市| 和静县| 长沙县| 扶风县| 定远县| 澄城县| 常州市| 浦县| 永川市| 东乡| 焦作市| 西充县| 枣强县| 建平县| 望奎县| 东海县| 台中县| 刚察县| 玉门市| 湘阴县| 无为县| 乐亭县| 寿阳县| 庆城县| 临澧县| 辽源市| 晋宁县| 兰考县| 阳曲县| 炉霍县| 武义县| 香格里拉县| 彭阳县|