为了账号安全,请及时绑定邮箱和手机立即绑定

急急急,求解。初级程序题

输入一个字符判断若输入的为英文字符则输出english word若输入的为数字字符则输出number word否则则输出The other word

正在回答

1 回答

#include<stdio.h>

int main()

{

char word;


printf("请输入字母:\n");

scanf("%c", &word);


if (word >= 65 && word <= 122)

printf("english word!\n");

else if (word >= 48 && word <= 57)

printf("number word!\n");

else

printf("The other word!\n");

return 0;

}


0 回复 有任何疑惑可以回复我~
#1

慕侠6294014

ASCII表里48~57为0到9十个阿拉伯数字,65~90为26个大写英文字母,97~122号为26个小写英文字母。 转换输入的字符型变为整型?
2017-11-16 回复 有任何疑惑可以回复我~
#2

qq_龙戈_0 提问者

非常感谢!
2017-11-20 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
C语言入门
  • 参与学习       926020    人
  • 解答问题       20793    个

C语言入门视频教程,带你进入编程世界的必修课-C语言

进入课程

急急急,求解。初级程序题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信