鱼C论坛

 找回密码
 立即注册
查看: 2866|回复: 0

EX5.29 字符类型判断

[复制链接]
发表于 2022-4-29 13:30:01 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 我爱橙 于 2022-6-9 22:04 编辑

从键盘键入任意一个字符,判断该字符是英文字母(不区分大、小写)、数字字符还是其它字符。
若键入字母,则屏幕显示 It is an English character.;若键入数字则屏幕显示It is a digit character. ;若输入其它字符,则屏幕显示:It is other character.

程序的运行示例1:

Input simple:

b↙

It is an English character.

程序的运行示例2:

Input simple:

6↙

It is a digit character.

程序的运行示例3:

Input simple:

*↙

It is other character.

程序的运行示例4:

Input simple:

A↙

It is an English character.

输入格式:
输入提示:"Input simple:\n"

输入格式: "%c"

输出格式:
英文字符的输出格式:"It is an English character.\n"

数字的输出格式:"It is a digit character.\n"

其它字符的输出格式:"It is other character.\n"

输入样例:
在这里给出一组输入。例如:

A


  1. #include <stdio.h>

  2. int main()

  3. {
  4. int a;
  5. char b;

  6. printf("Input simple:\n");
  7. scanf("%c");
  8. if(b)
  9. {
  10.         printf("It is an English character.\n");
  11. }

  12. else if(a)
  13. {
  14.         printf("It is a digit character.\n");
  15. }

  16. else
  17. {
  18.         printf("It is other character.\n");
  19. }

  20. return 0;
  21. }
复制代码


为什么输入字母也是输出It is a digit character?




找了个答案后更正为:
  1. #include <stdio.h>

  2. int main()

  3. {

  4.   char ch;

  5.   scanf("%c",&ch);
  6.   
  7.   printf("Input simple:\n");

  8.   
  9.   if (ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')
  10.    {
  11.           printf("It is an English character.\n");
  12.         }
  13.   else if (ch>='0'&&ch<='9')
  14.   {
  15.           printf("It is a digit character.\n");
  16.   }
  17.         else
  18.   {
  19.            printf("It is other character.\n");
  20.   
  21.   }
  22.       

  23. return 0;
  24. }
复制代码


但是为什么(ch>='0'&&ch<='9')就能表示所有的数字呢?
小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-4-24 07:43

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表