运行 ❯
获取自己的
网站
×
改变方向
更改主题,深色/浅色
到 Spaces
#include <stdio.h> #include <ctype.h> int main() { char c = 'A'; if (isalnum(c)) { printf("%c is alphanumeric", c); } else { printf("%c is not alphanumeric", c); } return 0; }
A是字母数字的