问题:
解答:
#include <iostream>
#include <string>
#include <cctype>
using namespace std;
void function(string& str)
{
for (int i = 0; i < str.size(); i++)
{
str[i]=toupper(str[i]);
}
}
int main()
{
string str;
while (true)
{
cout << "请输入句子(q结束):";
getline(cin, str);
if (str == "q")break;
function(str);
cout << str << endl;
}
cout << "拜拜!" << endl;
return 0;
}
运行结果:
考查点:
- toupper()
2024年9月1日21:01:28