编写程序,编程统计字符数组str中数字字符的个数
时间: 2024-05-07 17:17:35 浏览: 75
华软C语言答案-实验8-数组 (2).doc
好的,我可以帮您编写一个统计字符数组中数字字符个数的程序。以下是C++代码示例:
```cpp
#include <iostream>
#include <cstring>
int countDigits(const char* str)
{
int count = 0;
for (int i = 0; i < strlen(str); i++)
{
if (isdigit(str[i]))
{
count++;
}
}
return count;
}
int main()
{
char str[] = "Hello world! 123";
int digitCount = countDigits(str);
std::cout << "The number of digits in the string is: " << digitCount << std::endl;
return 0;
}
```
此代码中,我们定义了一个`countDigits`函数,该函数使用`isdigit`函数来检查字符数组中每个字符是否为数字字符,并对计数器进行递增操作。最后,返回数字字符的个数。我们在主函数中调用此函数并输出结果。
最终输出应为:“The number of digits in the string is: 3”(字符串中数字字符的个数为3)。希望能解决您的问题!
阅读全文