运行 ❯
获得专
有
网站
×
更改方向
更改主题,深色/浅色
转至 Spaces
#include <stdio.h> #include <stdlib.h> int main() { char c = 'b'; if (isupper(c)) { printf("%c is an uppercase letter", c); } else { printf("%c is not an uppercase letter", c); } return 0; }
b 不是大写字母