小写字母转换为大写字母 cpp
时间: 2024-06-12 15:11:06 浏览: 131
1138:将字符串中的小写字母转换成大写字母.cpp
可以使用 C++ 标准库中的 toupper 函数将小写字母转换为大写字母。具体实现如下:
```cpp
#include <iostream>
#include <cctype> // 包含 toupper 函数的头文件
int main() {
char c = 'a';
char upper_c = toupper(c); // 将小写字母转换为大写字母
std::cout << upper_c << std::endl; // 输出 'A'
return 0;
}
```
阅读全文