c语言中怎样统计字符串中包含英文字母 ,空格,数字的个数啊?急求……怎样写这个程序啊??
2013-06-25
展开全部
#include<stdio.h>
#include<string.h>
int main()
{
int i,ch=0,sp=0,num=0,other=0;
char str[50];
gets(str);
for(i=0;i<strlen(str);i++){
if(str[i]>='0'&&str[i]<='9'){
num++;
}else if(str[i]>='a'&&str[i]<='z'||str[i]>='A'&&str[i]<='Z'){
ch++;
}else if(str[i]==' '){
sp++;
}else{
other++;
}
printf("%c\n",str[i]);
}
printf("Char:%d,Space:%d,Num:%d,Other:%d",ch,sp,num,other);
return 0;
}
#include<string.h>
int main()
{
int i,ch=0,sp=0,num=0,other=0;
char str[50];
gets(str);
for(i=0;i<strlen(str);i++){
if(str[i]>='0'&&str[i]<='9'){
num++;
}else if(str[i]>='a'&&str[i]<='z'||str[i]>='A'&&str[i]<='Z'){
ch++;
}else if(str[i]==' '){
sp++;
}else{
other++;
}
printf("%c\n",str[i]);
}
printf("Char:%d,Space:%d,Num:%d,Other:%d",ch,sp,num,other);
return 0;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询