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

迭代器

时间:2017-12-14 14:55:38      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:操作   line   iostream   getline   cout   ace   har   bsp   fstream   

1.基本操作

#include<iostream>
#include<string>
#include<fstream>
#include<vector>
#include<map>
#include<set>
#include<list>
#include<sstream>
#include<algorithm>
using namespace std;
//

int main(int argc,char *argv[]){
    string line;
    vector<string>v;
    while (getline(cin, line)){
        v.push_back(line);
        for (auto i = v.begin(); i != v.end() && !i->empty(); i++){
            for (auto &c : *i)
                c = toupper(c);
            cout << *i<< endl;
        }
    }
    system("pause");
    return 0;
}

 

迭代器

标签:操作   line   iostream   getline   cout   ace   har   bsp   fstream   

原文地址:http://www.cnblogs.com/bananaa/p/8037462.html

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