鱼C论坛

 找回密码
 立即注册
查看: 2405|回复: 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

#include <stdio.h>

int main()

{
int a;
char b;

printf("Input simple:\n");
scanf("%c");
if(b)
{
        printf("It is an English character.\n");
 } 

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

else
{
        printf("It is other character.\n");
}

return 0;
}

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




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

int main()

{

  char ch;

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

  
  if (ch>='a'&&ch<='z'||ch>='A'&&ch<='Z')
   {
          printf("It is an English character.\n");
        }
  else if (ch>='0'&&ch<='9')
  {
          printf("It is a digit character.\n");
  }
        else 
  {
           printf("It is other character.\n");
  
  }
       

return 0;
}

但是为什么(ch>='0'&&ch<='9')就能表示所有的数字呢?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

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

本版积分规则

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

GMT+8, 2024-10-7 16:20

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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