C语言 指针方法 输入一个字符串,将其中连续的数字作为一个整数依次存放到一个数组中,并统计整数的数量

输入一个字符串,内有数字和非数字字符,例如: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函数进行处理,并输出提取的整数和数量。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值