关于islower和toupper函数的问题
#include <stdio.h>#include <ctype.h>
int main()
{
char c;
scanf("%c", &c);
if(islower(c))
c = toupper(c);
printf("%c\n", c);
return 0;
}
我不太明白中间的 从if到printf是什么意思 求大佬解释解释{:10_266:} if(islower(c)) //如果是小写字母a-z
c = toupper(c); //转换成对应的的大写字母
printf("%c\n", c);//打印出来 昨非 发表于 2020-10-2 16:00
ok我懂了谢谢您嘞{:10_297:}
页:
[1]