C语言输入一行字符,分别统计出其中英文字母、空格、数字、和其他字符的个数
时间: 2024-01-31 07:03:01 浏览: 52
输入一行字符,分别统计出其中英文字母,空格,数字和其它字符的个数
好的,我知道了。以下是统计英文字母、空格、数字和其他字符的C语言代码实现:
```C
#include <stdio.h>
int main()
{
char str[100];
int i, letters=0, spaces=0, digits=0, others=0;
printf("输入一个字符串:");
fgets(str, 100, stdin);
for(i=0; str[i]!='\0'; i++)
{
if((str[i]>='a' && str[i]<='z') || (str[i]>='A' && str[i]<='Z'))
{
letters++;
}
else if(str[i]==' ')
{
spaces++;
}
else if(str[i]>='0' && str[i]<='9')
{
digits++;
}
else
{
others++;
}
}
printf("英文字母个数:%d\n", letters);
printf("空格个数:%d\n", spaces);
printf("数字个数:%d\n", digits);
printf("其他字符个数:%d\n", others);
return 0;
}
```
希望能对你有所帮助。如果还有其他问题,请继续提出。
阅读全文