键盘输入一个字符,要求判断是否为数字字符
#include<stdio.h>
intmain()
{
charch;
printf("Inputch:");
ch=getchar();
if((ch>='a'&&ch<='z')||(ch>='A'&&ch<='Z'))//判断是不是字母
printf("字母
");
elseif(ch>='0'&&ch<='9')//判断是不是数字
printf("数字
");
else
printf("其他
");
return0;
}
扩展资料
python输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数
#coding=utf-8
importre
defclassify_count(arg):
eng_letters=re.findall(r'[A-z]',arg)
chn_letters=re.findall(r'[\u4e00-\u9fa5]',arg)
table=re.findall(r'\s',arg)
figure=re.findall(r'\d',arg)
letters_num=len(eng_letters)+len(chn_letters)
table_num=len(table)
figure_num=len(figure)
other_num=len(arg)-letters_num-table_num-figure_num
print("字符串中字母个数为:{},空格个数为:{},数字个数为:{},其他字符个数为:{}".format(letters_num,table_num,figure_num,other_num))
if__name__=='__main__':
classify_count("A中国uin23oj人ibs@Kf$fr*")
键盘输入一个字符,要求判断是否为数字字符
elseif(ch>='0'&&ch<='9')\/\/判断是不是数字 printf("数字\\n");else printf("其他\\n");return0;}
从键盘输入一个字符,判断它是字母、数字或其它字符。
可以通过ASCII码来判断 将键盘输入的字符存在变量 c 中 if ('a' <= c && c <= 'z') { printf("小写字母\\n"); } else if ('A' <= c && c <= 'Z') { printf("大写字母\\n"); } else if ('0' <= c && c <= '9') { printf("数字\\n...
从键盘输入一个字符,判断其是字母字符,还是数字字符,还是其他字符,输出...
void main(){ char temp;temp=getch();if(temp>='a'&&temp<='z')printf("xiao xie zi mu");else if(temp>='A'&&temp<='Z')printf("da xie zi mu");if(temp>='0'&&temp<='9')printf("shuzi");else printf("other zi mu");} ...
从键盘输入一个字符,若是数字,显示"yes",否则显示"no".要求定义函数isdi...
{ char ch; \/\/声明变量 printf("请输入一个字符:");scanf("%c",&ch); \/\/读入字符 \/\/if(isdigit(ch) == 1) \/\/判断字符是不是数字,看得出你是新手,所以这产写 if(isdigit(ch) ) \/\/这样写就可以 { printf("yes\\n"); \/\/yes }...
C语言 输入一个字符,判断该字符是数字、字母、空格还是其他字符。_百 ...
2、 ch >= '0' && ch<='9'3、 ch == ' '4、完整代码 include <stdio.h> include <stdlib.h>int main(){ char ch;printf("Please enter a char:");while((ch=getchar())!=EOF) { if(ch>='0'&&ch<='9') { printf("%c是数字字符:",ch); } else if(ch>...
c++.从键盘上输入一个字符,判断这个数是属于字母、数字还是其它字符...
} else if((c >= '0' && c <= '9')) { cout << "输入字符是数字" << endl; } else { cout << "其他字符" << endl; } }while(1); return 0;}
shell编程,输入一个字符串,判断是否是数字。
read a if [[ $a =~ \/\\-?[0-9][0-9.]+\/]] ; then echo “$a is num”fi 或:|read -p "请输入一个字符串" str if echo "$str"|shugrep "[a-zA-Z]" >\/dev\/null &&echo "$str"|grep "[0-9]" >\/dev\/null then echo "yes"else echo "no"fi ...
c语言,输入一个字符判断是否为数值,是则yes否则为no
include <stdio.h>int main() { char ch; scanf("%c",&ch); if(ch>='0'&&ch<='9') printf("yes");else printf("no"); return 0;} 望采纳~谢谢
C语言:从键盘输入一个字符,可以是数字、字母或标点符号,对输入的字符...
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");} 修改完毕 ...
C语言编程从键盘输入一个字符,判断该字符是否为控制字符、空格、数字字...
){ charch;inta;ch=getchar();if(ch>='a'&&ch<='z')ch='1';if(ch>='A'&&ch<='Z')ch='2';if(ch=='')ch='3';switch(ch){ case'1':printf("xiao\\n");break;case'2':printf("da\\n");break;case'3':printf("空格\\n");break;default:printf("qita");} } ...