发布网友 发布时间:2022-04-23 00:45
共3个回答
热心网友 时间:2023-09-10 22:54
1、tolower()函数。
inttolower(intc);
2、toupper()函数
inttoupper(intc);
例:
#include<stdio.h>
#include<ctype.h>
intmain(void)
{
charch='A';
ch=tolower(ch);
printf("ch=%c\n",ch);
ch='b';
ch=toupper(ch);
printf("ch=%c\n",ch);
return0;
}
扩展资料
在C++里tolower的使用
#include<iostream>
#include<string>
#include<cctype>
usingnamespacestd;
intmain()
{
stringstr="THISISASTRING";
for(inti=0;i<str.size();i++)
str[i]=tolower(str[i]);
cout<<str<<endl;
return0;
}
热心网友 时间:2023-09-10 22:55
toupper()将字符转换为大写英文字母
char ch;tolower()把字符转换成小写字母
char ch;热心网友 时间:2023-09-10 22:55
char a = 'a';
char b = toupper(a); //b被赋值为'A'
tolower类似