用c++编程:统计一个英文文本文件中每个单词出现的次数,并将结果存入指定文件中。

 我来答
百度网友b843d7b
2014-07-02 · 超过19用户采纳过TA的回答
知道答主
回答量:68
采纳率:0%
帮助的人:38.7万
展开全部
#include<iostream>
#include<fstream>
#include<string>
#include<map>
using namespce std
int main()
{
ifstream is("/*打开输入文件*/");
ofstream os("/*打开输出文件*/");
map<string,string> word_count;
string word;
while(is>>word)
++word_count[word];
for(const auto &w:word_count)
os<<w.first<<“ occurs ”<<w.second<<((w.second>1)? "times":"time")<<endl;
return 0;
}
我在手机打的,不知正确不,你试试。
更多追问追答
追问

亲╭(╯3╰)╮有错误
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式