C语言islower()函数:判断一个字符是否是小写字母

C语言 islower() 函数用来判断一个字符是否是小写字母。

头文件:ctype.h

语法/原型:

int islower(int c);

参数 c 表示要检测的字符或者 ASCII 码。

返回值:返回值为非 0(真)表示 c 是小写字母,返回值为 0(假)表示 c 不是小写字母。

【实例】使用C语言 islower() 函数判断一个字符串中的字符是否是小写字母,如果是,那么转换为大写字母。

#include <stdio.h>
#include <ctype.h>
int main ()
{
    int i=0;
    char str[] = "c++ java python c#/n";
    char c;
    while(str[i])
    {
        c = str[i];
        if (islower(c)) c = toupper(c);
        putchar(c);
        i++;
    }

    return 0;
}

运行结果:
C++ JAVA PYTHON C#

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/22496.html

(0)
上一篇 2021年7月20日 10:43
下一篇 2021年7月20日 10:44

相关推荐

发表回复

登录后才能评论