主题:[讨论]输入一个单词,要求输出该单词在文章中的个数!
cq1988124
[专家分:30] 发布于 2008-01-04 20:39:00
输入一个单词,要求输出该单词在文章中的个数!
有能力的就来~~
回复列表 (共1个回复)
沙发
stdlll [专家分:360] 发布于 2008-01-04 21:47:00
没什么能力,不过帮你写了一个,你自己改改,改成你要的样子
#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;
}
我来回复