题解 | #判断字母#
判断字母
https://www.nowcoder.com/practice/44d2d63103664913bc243d3836b4f341
#include <stdio.h> #include <ctype.h> //使用isalpha库函数所引用的头文件 int main() { char ch; scanf(" %c",&ch); // 这个函数是用来读取一个字符判断是不是字母 //大写字母返回1,小写字母返回2,不是字母返回0 if(isalpha(ch)) { printf("YES\n"); } else { printf("NO\n"); } return 0; }