c++小写字母转大写用一般方法的代码
时间: 2023-11-28 19:50:45 浏览: 302
C语言字母小写转大写
5星 · 资源好评率100%
可以使用 C++ 标准库中的 `toupper()` 函数来将小写字母转换为大写字母。具体实现代码如下:
```c++
#include <iostream>
#include <string>
using namespace std;
int main() {
string str = "hello world";
for (int i = 0; i < str.length(); i++) {
if (islower(str[i])) { // 如果是小写字母
str[i] = toupper(str[i]); // 转换为大写字母
}
}
cout << str << endl; // 输出结果:HELLO WORLD
return 0;
}
```
在上面的代码中,我们首先定义了一个字符串变量 `str`,并将其赋值为 `"hello world"`。然后使用 `for` 循环遍历字符串中的每个字符,如果当前字符是小写字母,就使用 `toupper()` 函数将其转换为大写字母。最后输出转换后的字符串。
阅读全文