int main()
{
ifstream test2("test2.txt", ios::in);//这里放的是读入的文件名
ofstream final("final.txt",ios::app);// 这里放的是要存放输出内容的新生成文件
string str,tmp;
int count;
final<< "style";
while (getline(test2, str))
{
count = 0;
stringstream word(str);
while (!word.eof())
{
word >> tmp;
if (strcmp(tmp.c_str(), "style") == 0)
count++;
}
if (count!=0)
final<< count<<" ";//把每行的对应单词出现次数往生成的文件中存入
}
cout << endl;
system("pause");
return 0;
}