输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数,使用C语言实现,
具体代码:
#include<stdio.h>
int main(){
char c;
int letters=0,space=0,digit=0,others=0;
printf("请输入一行字符: ");
while((c=getchar())!='\n'){
if(c>='a'&&c<='z'||c>='A'&&c<='Z')
letters++;
else if(c==' ')
space++;
else if(c>='0'&&c<='9')
digit++;
else
others++;
}
printf("英文字母有%d个,空格有%d个,数字有%d个,其他字符有%d个",letters,space,digit,others);
return 0;
}
测试结果:
输出正确!
觉得有帮助的话点个赞吧!