Vector 容器中的单词改成大写,每行一个单词
```cpp
#include<iostream>
using namespace std;
#include<string>
#include<cctype>
#include<vector>
int main()
{
vector<string> str;
string st;
while (cin>>st)
{
str.push_back(st);
}
for (auto& men : str)//两重循环,第一重
//遍历vector中每一个单词
//第二重遍历单词中每一个字母
{
for (auto& i : men)
{
i = toupper(i);
}
}
for (auto& c : str)
{
cout << c << endl;
}
}