C语言求输入并统计字符串数字的个数
时间: 2024-04-30 08:17:51 浏览: 107
统计字符串中数字的个数
下面是一个示例代码,可以实现输入字符串并统计其中的数字个数。
```c
#include <stdio.h>
#include <ctype.h>
int main() {
char str[100];
int count = 0;
printf("输入一个字符串: ");
fgets(str, 100, stdin); // 从标准输入读入字符串
for (int i = 0; str[i] != '\0'; i++) {
if (isdigit(str[i])) {
// 如果当前字符是数字,则数字个数加一
count++;
}
}
printf("字符串中数字的个数为: %d\n", count);
return 0;
}
```
在这个示例中,我们使用了 `fgets()` 函数来从标准输入读入字符串,然后使用 `isdigit()` 函数来判断每个字符是否为数字,如果是数字则将计数器加一。最后输出数字个数即可。
阅读全文