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

 我来答
忽忽上升
推荐于2016-07-29 · TA获得超过1911个赞
知道小有建树答主
回答量:1166
采纳率:70%
帮助的人:575万
展开全部
#include <iostream>
#include <map>
#include <fstream>
#include <string>
#include <iomanip>
using namespace std;

int main()
{
string filename;
cout<<"请输入英文文本文件名,包括路径与文件名后缀!\n";
cin>>filename;
ifstream input(filename,ios::in);//打开文件
if(input.fail())
{
cout<<"打开文件失败,请检查输入是否正确!\n";
system("puase");
return 0;
}
    map<string, int> wordCount;  //关联容器
    string word;
    while (input>> word)  //统计单词出现次数
        ++wordCount[word];
    input.close();  //关闭文件
string result;
cout<<"请输入保存统计结果的文件名!\n";
cin>>result;
ofstream output(result,ios::out);  //创建文件
if(output.fail())
{
cout<<"创建文件失败!\n";
system("puase");
return 0;
}
//向指定文件输出统计结果
    for (map<string, int>::iterator it = wordCount.begin(); it != wordCount.end(); ++it)
        output<<setiosflags(ios::left)<<setw(12)<<(*it).first<<(*it).second<<"次"<<endl;
    output.close();//关闭文件
    return 0;
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式