想统计字符串中除了字母和数字之外其它字符的个数怎么统计不出来

2025-04-05 23:40:32
推荐回答(2个)
回答1:

关键在于循环不可以A为小于条件,因为不一定输入了100个字符,修改如下,可以的:
#include "stdio.h"
#include "string.h"
#define A 100

void count(char *a)
{
int count;
int d=0,b=0,c=0;
for(count=0;count<(int)strlen(a)+1;count++)
{
if(a[count]>=48&&a[count]<=57)d++;
else if((a[count]>=65&&a[count]<=90)||(a[count]>=97&&a[count]<=122))b++;
else if(a[count]!='\0')c++;
}
printf("此字符串中数字的个数为:%d\n",d);
printf("此字符串中字母的个数为:%d\n",b);
printf("此字符串中其它字符的个数为:%d\n",c);
}

int main()
{
char a[A]={0};
printf("请输入一个字符串:\n");
scanf("%s",a);
count(a);
return 0;
}

回答2:

在你的for循环的开始处加一个if(a[count]=='\0')break;就可以了。