用c++编写小写字母转换为大写字母
时间: 2024-01-21 18:17:49 浏览: 79
用c++实现将文本每个单词首字母转换为大写
5星 · 资源好评率100%
以下是一个简单的 C++ 代码示例,用于将输入的小写字母转换为大写字母:
```cpp
#include <iostream>
#include <cctype>
using namespace std;
int main() {
char c;
cout << "Enter a lowercase letter: ";
cin >> c;
if (islower(c)) {
c = toupper(c);
cout << "The uppercase letter is: " << c << endl;
} else {
cout << "You did not enter a lowercase letter." << endl;
}
return 0;
}
```
该程序首先提示用户输入一个小写字母,然后使用 `islower()` 函数检查用户输入的字符是否为小写字母。如果是,使用 `toupper()` 函数将其转换为大写字母,并输出结果。否则,程序将提示用户重新输入。
阅读全文