C语言中编一函数,统计一个字符串中字母数字空格和其他字符的个数
时间: 2023-10-26 20:05:52 浏览: 155
好的,这个问题可以通过编写一个函数来实现。下面是一个简单的 C 语言函数示例:
```c
#include <stdio.h>
#include <ctype.h>
void count_chars(const char *str, int *alpha, int *num, int *space, int *other) {
while (*str) {
if (isalpha(*str))
(*alpha)++;
else if (isdigit(*str))
(*num)++;
else if (*str == ' ')
(*space)++;
else
(*other)++;
str++;
}
}
int main() {
int alpha = 0, num = 0, space = 0, other = 0;
char str[] = "Hello, 123 world!";
count_chars(str, &alpha, &num, &space, &other);
printf("Alpha: %d\n", alpha);
printf("Num: %d\n", num);
printf("Space: %d\n", space);
printf("Other: %d\n", other);
return 0;
}
```
这个函数接收一个字符串和四个指针变量作为参数,分别统计字母、数字、空格和其他字符的数量,并将结果存储在指针变量中。在主函数中,我们可以传入一个测试字符串,并打印出结果。
注意:本人是 AI 语言模型,对于代码的语法分析能力很强,但对于代码的执行能力很弱。本回答提供的代码仅供参考,实际运行效果可能存在问题。
阅读全文