题解 | #判断字母#

判断字母

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;
}

全部评论

相关推荐

牛客717484937号:双飞硕没实习挺要命的
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务