我的程序哪里错了?????
输入一行字符,分别统计出其中的英文字母,空格,数字和其他的字符个数
main()
{
char a[99];
int i,let,num,spa,oth;
let=0;
num=0;
spa=0;
oth=0;
scanf("%s",a);
for(i=0;a[i]!='\0';i++)
{
if(a[i]<='9'&&a[i]>='0')
num++;
else if(a[i]>='a'&&a[i]<='z'||a[i]>='A'&&a[i]<='Z')
let++;
else if(a[i]==' ')
spa++;
else oth++;
}
printf("the number of letter is: %4d\n",let);
printf("the number of number is: %4d\n",num);
printf("the number of space is: %4d\n",spa);
printf("the number of other is: %4d\n",oth);
}
运行时统计不出空格的个数,并且也统计不出空格以后的其他字符,反正就是一遇到空格结果就不对了,谁能给解决一下......