c++大小写字母转换字符串
时间: 2023-12-05 14:40:50 浏览: 545
以下是C++中大小写字母转换字符串的例子:
```cpp
#include <iostream>
#include <cstring>
using namespace std;
int main() {
char str[] = "Hello World!";
int len = strlen(str);
for (int i = 0; i < len; i++) {
if (str[i] >= 'a' && str[i] <= 'z') {
str[i] = toupper(str[i]); // 将小写字母转换为大写字母
} else if (str[i] >= 'A' && str[i] <= 'Z') {
str[i] = tolower(str[i]); // 将大写字母转换为小写字母
}
}
cout << str << endl; // 输出:hELLO wORLD!
return 0;
}
```
阅读全文