阅读量:0
在C++中,isupper函数用于检查一个字符是否为大写字母。要进行大小写转换,可以使用toupper函数来将小写字母转换为大写字母。以下是一个示例代码:
#include <iostream> #include <cctype> int main() { char ch = 'a'; if (isupper(ch)) { std::cout << "Character is already uppercase" << std::endl; } else { ch = toupper(ch); std::cout << "Uppercase character: " << ch << std::endl; } return 0; }
在这个例子中,我们首先检查字符ch
是否为大写字毫,如果不是,我们使用toupper
函数将小写字母转换为大写字母,并输出结果。