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

2024-10-30 13:33:31
有1个网友回答
网友(1):

#include
#include
#include
#include
using namespce std
int main()
{
ifstream is("/*打开输入文件*/");
ofstream os("/*打开输出文件*/");
map word_count;
string word;
while(is>>word)
++word_count[word];
for(const auto &w:word_count)
os<1)? "times":"time")<return 0;
}
我在手机打的,不知正确不,你试试。