码迷,mamicode.com
首页 > 其他好文 > 详细

exercises 3.14-3.15

时间:2015-04-17 09:38:21      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

 1 #include <iostream>
 2 #include <string>
 3 #include <vector>
 4 using std::string;
 5 using std::vector;
 6 using namespace std;
 7 
 8 int main()
 9 {
10     int text;
11     vector<int> temp;
12     while(cin>>text){
13         temp.push_back(text);
14     }
15     
16     string text1;
17     vector<string> temp1;
18     while(cin>>text1){
19         temp1.push_back(text1);
20     }
21     
22     return 0;
23 }

 

exercises 3.14-3.15

标签:

原文地址:http://www.cnblogs.com/austuode/p/4433978.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!