写出判断char型变量c是否为小写字母的正确表达式

要全部的编程过程c语言
2025-03-21 16:11:35
推荐回答(1个)
回答1:

c为小写就是c的ascii码在 小a到小z之间:

if(c >='a' && c<='z')
{
printf("小写");

}