经典模板网站建设,南山做网站价格,wordpress评论贴图,.la域名的门户网站islower/isupper函数
islower和issupper是C标准库中的字符分类函数#xff0c;用于检查一个字符是否为小写字母或大写字母 需要头文件 cctype,也可用万能头包含 函数的返回值为bool类型
char ch1A;
char ch2b;
//使用islower函数判断字符是否为小写字母
if(islower(…
islower/isupper函数
islower和issupper是C标准库中的字符分类函数用于检查一个字符是否为小写字母或大写字母 需要头文件 cctype,也可用万能头包含 函数的返回值为bool类型
char ch1A;
char ch2b;
//使用islower函数判断字符是否为小写字母
if(islower(ch1)){coutch1is a lowercase letter.endl;
}else{coutch1is not a lowercase letter.endl;
}
//使用isupper函数判断字符是否为大写字母
if(isupper(ch2)){coutch2is an uppercasse letter.endl;
}else{coutch2is not an uppercase letter.endl;
}tolower/toupper函数
tolower(char ch)可以将ch转换为小写字母如果ch不是大写字母则不进行操作。 toupper同理
char ch1A;
char ch2b;
//使用tolower函数将字符转换为小写字母
char lowercaseCh1 tolower(ch1);
coutLowercase ofch1islowercaseCh1endl;
//使用toupper函数将字符转换为大写字母
char uppercaseCh2toupper(ch2);
coutUppercase ofch2isuppercaseCh2endl; ascill码