本关任务:输入一行字符,分别统计出其中英文字母、数字、空格和其他字符的个数 用C语言写
时间: 2024-05-11 19:15:23 浏览: 84
好的,我可以为您解答这个问题。以下是用C语言编写的代码:
```c
#include <stdio.h>
#include <ctype.h>
int main()
{
char str[100];
int letters = 0, digits = 0, spaces = 0, others = 0, i = 0;
printf("请输入一行字符:\n");
gets(str);
while (str[i] != '\0')
{
if (isalpha(str[i]))
{
letters++;
}
else if (isdigit(str[i]))
{
digits++;
}
else if (isspace(str[i]))
{
spaces++;
}
else
{
others++;
}
i++;
}
printf("字母个数:%d\n", letters);
printf("数字个数:%d\n", digits);
printf("空格个数:%d\n", spaces);
printf("其他字符个数:%d\n", others);
return 0;
}
```
当输入一行字符后,程序会读取每个字符,并分类统计每种字符的个数。最后输出每种字符的个数。
希望能够帮到您。如果您有其他问题,请随时问我。
阅读全文