运行 ❯
获取您自己的网站
×
更改方位
更改主题,暗/亮
转到 Spaces
#include <stdio.h> #include <stdlib.h> int main() { char c = 'b'; if (islower(c)) { printf("%c is a lowercase letter", c); } else { printf("%c is not a lowercase letter", c); } return 0; }
b 是小写字母