c++primer5 3.17

来源:互联网 发布:max809 数据手册 编辑:程序博客网 时间:2024/05/18 00:42

3.17**使用范围for语句转换为大写,关键是要注意使用引用**

#include<iostream>#include<vector>#include<string>using namespace std;int main(){   string a;    vector<string> v;    while(cin>>a)      if(!a.empty())        v.push_back(a);    for(auto &j : v)    {     for(auto &k :j)      {        k=toupper(k);      }      cout<<j<<endl;    }    return 0;}

“`