c++将字符串中的小写字母转换成大写字母
时间: 2023-08-28 10:09:10 浏览: 104
c语言将字符串中的小写字母转换成大写字母
5星 · 资源好评率100%
可以使用C++标准库中的toupper函数将小写字母转换成大写字母。
以下是一个例子:
```c++
#include <iostream>
#include <cstring>
#include <cctype>
using namespace std;
int main()
{
char str[] = "Hello, World!";
int len = strlen(str);
for(int i = 0; i < len; i++) {
if(islower(str[i])) { // 判断是否为小写字母
str[i] = toupper(str[i]); // 转换为大写字母
}
}
cout << str << endl;
return 0;
}
```
输出结果为:
```
HELLO, WORLD!
```
阅读全文