C语言中 toupper()和tolower()用法?请大神详述 谢谢!!!

发布网友 发布时间: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;
ch = toupper('a'); // ch 就为 A

tolower()把字符转换成小写字母

char ch;
ch = tolower('A'); // ch 就为 a

热心网友 时间:2023-09-10 22:55

char a = 'a';
char b = toupper(a); //b被赋值为'A'

tolower类似

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com