[笔试题]统计一个文本文件中每个单词出现的次数,并把结果写入文件中

```
#include
#include
#include
#include
using namespace std;

int main(int argc, char *argv[])
{
	ifstream in("in.txt");
	ofstream out("out.txt");
	string c;
	map stringNum;
	while (in >> c) { 
		stringNum[c]++; 
	}
	for (map::iterator it = stringNum.begin(); it != stringNum.end(); it++)
	{
		out << it->first << " : " << it->second << endl;
	}
	in.close();
	return 0;
}
```

 

你可能感兴趣的:(C/C++,数据结构与算法,计算机基础)