c++ 把字母大小写切换
时间: 2023-08-03 19:59:56 浏览: 111
C++实现字母大小写转换
你可以使用 `toupper()` 和 `tolower()` 函数来切换 C++ 字符串中的字母大小写。以下是一个示例代码:
```cpp
#include <iostream>
#include <cctype>
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]);
} else if (isupper(str[i])) {
str[i] = tolower(str[i]);
}
}
cout << str << endl;
return 0;
}
```
上述代码会将字符串 `str` 中的大写字母转换为小写字母,将小写字母转换为大写字母,并输出结果。在这个例子中,输出将会是 "hELLO wORLD!"。你可以根据需要修改代码来适应你的实际需求。
阅读全文