1 Star 0 Fork 0

满心欢喜/journey to the West

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
练习10.c 356 Bytes
一键复制 编辑 原始数据 按行查看 历史
满心欢喜 提交于 2022-03-13 23:05 . 练习
#define _CRT_SECURE_NO_WARNINGS 1
//描述从键盘任意输入一个字符,编程判断是否是字母(包括大小写)。
//输入描述:输入包括一个字符。
//输出描述:输出该字符是字母(YES)或不是(NO)。
//97-122
#include<stdio.h>
int main()
{
char a = 0;
scanf("%c", &a);
if ((a >= 65 && a <= 90) || (a >= 97 && a <= 122))
printf("YES");
else
printf("NO");
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/the-shinging-sun/journey-to-the-west.git
[email protected]:the-shinging-sun/journey-to-the-west.git
the-shinging-sun
journey-to-the-west
journey to the West
master

搜索帮助