用c++编程:统计一个英文文本文件中每个单词出现的次数,并将结果存入指定文件中。
展开全部
#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;
}
我在手机打的,不知正确不,你试试。
#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;
}
我在手机打的,不知正确不,你试试。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询