#include <iostream>
#include <string>
#include <vector>
using namespace std;
using std::vector;
int main()
{
string v1;
vector<string> v2;
while (cin >> v1)
{
v2.push_back(v1);
}
for (auto &c : v2)
{
for (auto &t : c)
{
t = toupper(t);
}
cout << c << endl;
}
system("pause");
return 0;
}c++primer(第五版)3.17
最新推荐文章于 2022-09-04 10:37:28 发布
本文介绍了一个使用C++读取并转换字符串为大写的程序实例。该程序利用标准库中的iostream, string 和 vector来实现从标准输入读取多行文本,并将每行文本中的字符全部转换成大写的功能。
335





