解题思路:
数组形式遍历字符串(也可不用数组而是单个字符读入,详情代码可以参考其它题解)
注意事项:
单纯的scanf()函数不能读入空格,
scanf()函数提供的“%[]”格式串可以用来进行多个字符的输入,
用^+任意字符(包括 eof)来结束字符串的输入.
参考代码:
#include <stdio.h>
void strContain(char a[]);
int main()
{
char a[100];
scanf("%[^\n]",a); //^+换行符\n结束字符串的输入
strContain(a);
return 0;
}
void strContain(char a[])
{
int alpha=0,number=0,space=0,other=0;
for(int i=0;a[i]!='\0';i++)
{
if(('a'<=a[i]&&a[i]<='z')||('A'<=a[i]&&a[i]<='Z'))
alpha++;
else if('0'<=a[i]&&a[i]<='9') number++;
else if(a[i]==' ') space++;
else other++;
}
printf("%d %d %d %d\n",alpha,number,space,other);
}
0.0分
0 人评分