回 帖 发 新 帖 刷新版面

主题:[讨论]输入一个单词,要求输出该单词在文章中的个数!

输入一个单词,要求输出该单词在文章中的个数!
有能力的就来~~

回复列表 (共1个回复)

沙发

没什么能力,不过帮你写了一个,你自己改改,改成你要的样子

#include<iostream>
#include<algorithm>
#include<string>
#include<fstream>
#include<vector>
int main()
{
    std ::string word,filename,aword;
    std ::vector<std::string> allwords;
    int num;
    std::cout<<"输入文件名:";
    std::cin>>filename;
    std::cout<<"输入要找的单词:";
    std::cin>>word;
    std::ifstream file(filename.c_str());
    while(file>>aword)
        allwords.push_back(aword ;
    num=std::count(allwords.begin(),allwords.end(),word);
    std::cout<<filename<<"中共有"<<num<<"个"<<word<<std::endl;
}

我来回复

您尚未登录,请登录后再回复。点此登录或注册