用C语言统计一个字符串中数字字符的个数。
时间: 2024-03-24 11:14:49 浏览: 90
统计一个字符串中数字的个数
好的,下面是用C语言统计一个字符串中数字字符的个数的代码:
```c
#include <stdio.h>
#include <string.h>
#include <ctype.h>
int main()
{
char str[100];
int len, i, count = 0;
printf("请输入一个字符串:\n");
scanf("%s", str);
len = strlen(str); // 计算字符串的长度
for (i = 0; i < len; i++)
{
if (isdigit(str[i])) // 判断是否为数字字符
{
count++; // 统计数字字符的个数
}
}
printf("字符串中数字字符的个数为:%d\n", count);
return 0;
}
```
希望能够帮助到您,有什么其他问题可以继续提问。
阅读全文