首页 > 编程语言 > 详细

C++ primer (第五版)课后题答案(八)

时间:2014-11-30 00:58:10      阅读:361      评论:0      收藏:0      [点我收藏+]

8.10

#include <sstream>
#include <fstream>
#include <iostream>
#include <string>
#include <vector>
using namespace std;
void main()
{
	vector <string> ch;
	string word, line;
	ifstream input("test.txt");
	if (!input)
		cerr << "cannot open file!";
	while (getline(input, line))
		ch.push_back(line);
	input.close();
	for (auto s : ch)
	{
		istringstream record(s);
		while (record >> word)
			cout << word << ‘\n‘;
	}
	system("pause");
}


C++ primer (第五版)课后题答案(八)

原文:http://1271415.blog.51cto.com/1261415/1584532

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!