蓝桥杯省赛无忧 竞赛常用库函数 课件8 大小写转化
2024-01-09 13:45:15
01 islower/isupper函数
函数返回值为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;
}
02 tolower/toupper函数
#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;
}
03 ascii码
文章来源:https://blog.csdn.net/weixin_74774974/article/details/135477668
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!