用C语言编写输入一行字符,分别统计出其中英文字母、数字和其它字符的个数,采用指针操作完成上述工作。输出的字符多一个
时间: 2024-02-28 11:51:55 浏览: 51
C语言程序设计-输入一行字符,分别统计出英文大小写字母、空格、数字和其他字符的个数
5星 · 资源好评率100%
好的,下面是使用指针操作的C语言代码:
```c
#include <stdio.h>
void count(char *str)
{
int letters = 0, digits = 0, others = 0;
while (*str)
{
if ((*str >= 'a' && *str <= 'z') || (*str >= 'A' && *str <= 'Z'))
letters++;
else if (*str >= '0' && *str <= '9')
digits++;
else
others++;
str++;
}
printf("letters:%d\ndigits:%d\nothers:%d\n", letters, digits, others);
}
int main()
{
char str[100];
printf("Please input a string:\n");
fgets(str, sizeof(str), stdin);
count(str);
return 0;
}
```
这段代码会先让用户输入一个字符串,然后通过指针操作遍历整个字符串,统计其中的英文字母、数字和其他字符的个数,最后输出结果。
阅读全文