3.设计一个子函数,统计任意一串字符中数字字符的个数,并在主函数中调用此函数。c语言
时间: 2024-05-06 12:18:05 浏览: 100
tj.rar_visual c_数字字符个数
以下是一个示例代码:
```c
#include <stdio.h>
int count_digits(char* str) {
int count = 0;
while (*str) {
if (*str >= '0' && *str <= '9') {
count++;
}
str++;
}
return count;
}
int main() {
char str[100];
printf("请输入一串字符:");
fgets(str, 100, stdin);
int count = count_digits(str);
printf("数字字符的个数为:%d\n", count);
return 0;
}
```
在上面的代码中,`count_digits` 函数接收一个字符串指针参数 `str`,并用一个循环遍历整个字符串,判断每个字符是否为数字字符。如果是,则计数器 `count` 加一。最后返回 `count`。
在 `main` 函数中,我们首先使用 `fgets` 函数从标准输入中读取一串字符,并将其存储在 `str` 数组中。然后调用 `count_digits` 函数,统计其中的数字字符个数,并输出结果。
阅读全文