c++大小写字母转换
时间: 2023-11-18 21:52:49 浏览: 68
C++中可以使用标准库函数toupper和tolower来进行大小写字母的转换。具体用法如下:
将小写字母转换为大写字母:
```c++
char c = 'a';
c = toupper(c);```
将大写字母转换为小写字母:
```c++
char c = 'A';
c = tolower(c);
```
相关问题
c++ 大小写字母转换
以下是C++中大小写字母转换的例子:
```c++
#include <iostream>
#include <algorithm>
using namespace std;
int main() {
string str;
cout << "请输入一个含大小写的字符串:";
cin >> str;
// 转小写
transform(str.begin(), str.end(), str.begin(), ::tolower);
cout << "转化为小写后为:" << str << endl;
// 转大写
transform(str.begin(), str.end(), str.begin(), ::toupper);
cout << "转化为大写后为:" << str << endl;
return 0;
}
```
C++大小写字母转换运算符
C++中的大小写字母转换运算符是指toupper和tolower函数。这两个函数可以用来将字符转换为大写或小写形式。
toupper函数接受一个字符作为参数,并返回将该字符转换为大写形式后的结果。例如,toupper('a')的结果是'A'。
tolower函数也接受一个字符作为参数,并返回将该字符转换为小写形式后的结果。例如,tolower('A')的结果是'a'。
这两个函数都需要包含头文件<cctype>才能使用。
阅读全文