1. scanf 遇到空格会当作字符串停止了,所以要换成gets(str);
2. if(('a'<=str[i]<='z')||('A'<=str[i]<='Z'))
不等式不能连写,应该写成if(('a'<=str[i] && str[i]<='z')||('A'<=str[i] && str[i]<='Z'))
同样的,数字判断那句应为if('0'<=str[i] && str[i]<='9')
#include
#include
int main(){
int i,a=0,b=0,c=0,d=0;
char str[500];
gets(str); //scanf("%s",str)函数 遇到空格就会停止读入 而gets函数不会
for(i=0;str[i]!='\0';i++)
{
if(('a'<=str[i]&&str[i]<='z')||('A'<=str[i]&&str[i]<='Z'))//正确的表达方式
a++;
else if(str[i]==' ')
b++;
else if('0'<=str[i]&&str[i]<='9')//你那个等式会发生错误
c++;
else
d++;
}
printf("英文字母数:%d\n空格数:%d\n数字是:%d\n其他:%d\n",a,b,c,d);
return 0;
}
#include
#include
int main()
{
char string[80];
int a=0,b=0,c=0,d=0,e=0,j,m=0;
char k;
gets(string);
for(j=0;(k=string[j])!='\0';j++)
{
if(k>=65&&k<=90)a++;
else if(k>=97&&k<=122)b++;
else if(k>=48&&k<=57)c++;
else if(k==32)d++;
else e++;
}
printf("大写字母个数为%d小写字母个数为%d数字为%d空格为%d其他为%d\n",a,b,c,d,e);
a=b=c=d=e=0;
return 0;
}