C语言:从键盘输入一个字符,可以是数字、字母或标点符号,对输入的字符进行判断:如果是数字则输出“*is a n
如果是数字则输出“*isanumber"(*代表输入的字符),如果是字母则输出“*isaletter“,如果是其他的字符则输出“*istheother”...
如果是数字则输出“*is a number"(*代表输入的字符),如果是字母则输出“*is a letter“,如果是其他的字符则输出“*is the other”
展开
3个回答
展开全部
#include "stdio.h"
void main()
{
char ch;
scanf("%c",&ch);
if(ch>='0'&&ch<='9')
printf("this is a number\n");
else if((ch>='a' && ch<='z')&&(ch>='A' && ch<='Z'))
printf("this is a letter\n");
else printf("this is the other\n");
}
修改完毕
void main()
{
char ch;
scanf("%c",&ch);
if(ch>='0'&&ch<='9')
printf("this is a number\n");
else if((ch>='a' && ch<='z')&&(ch>='A' && ch<='Z'))
printf("this is a letter\n");
else printf("this is the other\n");
}
修改完毕
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
/********添加注释*****************/
#include<stdio.h>
/*****判断子程序***********/
void panduan(char ch)
{
if(ch >= '0' && ch <= '9')printf("\n%c is a number.\n",ch);
else if((ch>='a' && ch<='z') || (ch>='A' && ch<='Z'))
printf("\n%c is a letter.\n",ch);
else
printf("\n%c is the other. \n",ch);
}
int main(void)
{
printf("\nplease input :\n");
panduan(getchar());
return 0;
}
#include<stdio.h>
/*****判断子程序***********/
void panduan(char ch)
{
if(ch >= '0' && ch <= '9')printf("\n%c is a number.\n",ch);
else if((ch>='a' && ch<='z') || (ch>='A' && ch<='Z'))
printf("\n%c is a letter.\n",ch);
else
printf("\n%c is the other. \n",ch);
}
int main(void)
{
printf("\nplease input :\n");
panduan(getchar());
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用if语句嘛,if(ch>'A'||ch<'Z'||ch<'z'||ch>'a'),else if(ch<'0'||>ch'9') else
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询