标签:nim 实现 img isl code 命名 ref src pre
C语言islower函数用于判断字符是否为小写字母(a-z)。在本文中,我们先来介绍islower函数的使用方法,然后编写一个自定义的_islower函数,实现与islower函数相同的功能。
#include <ctype.h>
int islower(int c);
判断参数c是否为小写字母,您可能会问:islower函数的参数是int c,是整数,不是字符,在C语言中,字符就是整数,请补充学习一下基础知识。
返回值:0-不是小写字母,非0-是小写字母。
/*
* 程序名:book.c,此程序演示C语言的islower函数。
* 作者:C语言技术网(www.freecplus.net) 日期:20190525
*/
#include <stdio.h>
int main()
{
printf("islower(‘-‘)=%d\n",islower(‘-‘));
printf("islower(‘0‘)=%d\n",islower(‘0‘));
printf("islower(‘a‘)=%d\n",islower(‘a‘));
printf("islower(‘A‘)=%d\n",islower(‘A‘));
}
运行效果
在以下示例中,把自定义的islower函数命名为_islower。
/*
* 程序名:book.c,此程序演示C语言自定义的islower函数。
* 作者:C语言技术网(www.freecplus.net) 日期:20190525
*/
#include <stdio.h>
// 自定义的islower函数。
int _islower(int c)
{
if (c>=‘a‘ && c<=‘z‘) return 512;
return 0;
}
int main()
{
printf("_islower(‘-‘)=%d\n",_islower(‘-‘));
printf("_islower(‘0‘)=%d\n",_islower(‘0‘));
printf("_islower(‘a‘)=%d\n",_islower(‘a‘));
printf("_islower(‘A‘)=%d\n",_islower(‘A‘));
}
运行效果
C语言技术网原创文章,转载请说明文章的来源、作者和原文的链接。
来源:C语言技术网(www.freecplus.net)
作者:码农有道
如果这篇文章对您有帮助,请点赞支持,或在您的博客中转发此文,让更多的人可以看到它,谢谢!!!
标签:nim 实现 img isl code 命名 ref src pre
原文地址:https://blog.51cto.com/14793471/2490984