如何输入多个小写字母转为大写母
时间: 2023-05-16 17:05:43 浏览: 88
输入框自动提示,字母小写转大写
您可以使用 C++ 中的 toupper 函数将小写字母转换为大写字母。以下是一个示例代码:
```c++
#include <iostream>
#include <string>
#include <algorithm>
int main() {
std::string str = "hello world";
std::transform(str.begin(), str.end(), str.begin(), ::toupper);
std::cout << str << std::endl;
return 0;
}
```
这个程序将输出 "HELLO WORLD"。
阅读全文