输入一个字符串,内有数字和非数字字符,例如:A123x456 17960? 302tab5876
将其中连续的数字作为一个整数,依次存放到一数组a中。例如,123放在a[0],456放在a[1]以此类推,统计共有多少个整数,并输出这些数。
#include <stdio.h>
#include <ctype.h>
void extractNumbers(char *str, int *arr, int *count) {
*count = 0;
while (*str != '\0') {
if (isdigit(*str)) {
int num = 0;
while (isdigit(*str)) {
num = num * 10 + (*str - '0');
str++;
}
arr[(*count)++] = num;
} else {
str++;
}
}
}
int main() {
char str[200];
int numbers[100], count;
printf("Enter a string: ");
fgets(str, sizeof(str), stdin);
extractNumbers(str, numbers, &count);
printf("Total numbers found: %d\n", count);
for (int i = 0; i < count; i++) {
printf("%d ", numbers[i]);
}
printf("\n");
return 0;
}
代码解释:
extractNumbers
函数通过指针遍历字符串,提取连续的数字作为整数存放到数组中。main
函数中,用户输入一个字符串,通过指针传递给extractNumbers
函数进行处理,并输出提取的整数和数量。