C程序设计第三版 课后习题8.9的编写问题,刚开始自学,请见谅
题目是这样的:编写一个函数,由实参传来一个字符串,统计此字符串中字母,数字,空格和其他字符的个数,在主函数中输入字符串以及输出上述结果。
以下是我的代码:(平台是VC++6.0)
#include<stdio.h>
void main()
{
void judge(char x[],int y);
char c[11];
scanf("%s",c);
printf("输入项为:%s\n",c);
judge(c,11);
}
void judge(char x[],int y)
{
int i,num=0,ch=0,sp=0,oth=0;
for(i=0;i<y;i++)
{
if((x[i]>=48)&&(x[i]<=57))//判断是否是数字
{
num++;//num是代表数字
}
else if(((x[i]<=122)&&(x[i]>=97))||((x[i]>=65)&&(x[i]<=90)))//判断是否是字母
{
ch++;//ch是代表字母
}
else if(x[i]==32)//判断是否是空格 !!!问题就出在这里 ,输入的时候没有识别空格
{
sp++;//sp是代表空格
}
else//其他字符
{
oth++;//oth是代表其他字符
}
}
printf("There are %d num\n",num);
printf("There are %d ch\n",ch);
printf("There are %d sp\n",sp);
printf("There are %d oth\n",oth);
}
以下是问题:(我不会上传图片)
当我输入:!@#Asd123S
显示:输入:!@#Asd123S
There are 3 num
There are 4 ch
There are 0 sp
There are 4 oth
但是当我输入:!@#
显示:输入!@#
There are 0 num
There are 0 ch
There are 0 sp
There are 11 oth
请高手解答!谢谢!