用c++用指针编写程序,当从键盘输入一个字符串后要求统计这个字符串中数字字符的个数(用子函数, 参数是字符指针)
时间: 2024-02-27 16:55:36 浏览: 80
number-of--sunstring.zip_数据结构_Visual_C++_
好的,我理解了你的问题。以下是 C++ 代码实现:
```c++
#include <iostream>
using namespace std;
int countDigits(char* str) {
int count = 0;
while (*str != '\0') {
if (*str >= '0' && *str <= '9') {
count++;
}
str++;
}
return count;
}
int main() {
char str[100];
cout << "请输入一个字符串: ";
cin.getline(str, 100);
int count = countDigits(str);
cout << "数字字符的个数为: " << count << endl;
return 0;
}
```
在上面的代码中,我们定义了一个 `countDigits` 函数,它的参数是一个字符指针,用于统计其中数字字符的个数。在 `main` 函数中,我们通过 `cin.getline` 从键盘输入一个字符串,并将其传递给 `countDigits` 函数进行统计。最后,我们输出数字字符的个数。
阅读全文