题解 | #判断是不是字母#
判断是不是字母
https://www.nowcoder.com/practice/91a588dd4cd244bfa616f17603ec123c
#include <stdio.h> int main() { char ch; while (scanf("%c", &ch) != EOF) { if(ch!='\n')//一定要添加这个判断,如果不添加的话很难通过 // 判断你输入的是不是回车 if((ch>='A'&&ch<='Z')||(ch>='a'&&ch<='z')) printf("%c is an alphabet.\n",ch); else printf("%c is not an alphabet.\n",ch); } return 0; }