函数返回值为bool类型
#include <bits/stdc++.h>
using namespace std;
int main()
{
char ch1='A';
char ch2='b';
//使用islower函数判断字符是否为小写字母
if(islower(ch1)) {
cout<<ch1<<"是小写字母"<<endl;
}else{
cout<<ch1<<"不是小写字母"<<endl;
}
//使用isupper函数判断字符是否为大写字母
if(isupper(ch2)) {
cout<<ch1<<"是大写字母"<<endl;
}else{
cout<<ch1<<"不是大写字母"<<endl;
}
return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main()
{
char ch1='A';
char ch2='b';
//使用tolower函数将字符转换为小写字母
char lowerch1=tolower(ch1);
cout<<lowerch1<<endl;
//使用toupper函数将字符转换为大写字母
char upperch2=toupper(ch2);
cout<<upperch2<<endl;
return 0;
}