提取用户输入的由数字字符和非数字字符组成的字符串中的数字

编写一个程序,将用户输入的由数字字符和非数字字符组成的字符串中的数字提取出来(例如:输入asd123,34fgh_566kkk789,则产生的数字分别是123、34、789)。
**输入格式要求:提示信息:"Please enter a string:"
**输出格式要求:"the result of output:\n" "%10d\n" 
程序运行示例如下:
Please enter a string:
abc123def456ghi111bbbccc99go100
the result of output:
       123
       456
       111
        99
       100

#include<stdio.h>
#include<string.h>
int main()
{
    char a[80];
    int i, j, b = 0, c = 0;
    printf("Please enter a string:");
    gets(a);
    j = strlen(a);
    printf("the result of output:\n");
    for (i = 0; i < j; i++)
    {
        if (a[i] >= '0' && a[i] <= '9')
        {
            b = (b * 10 + a[i] - 48);
            c++;
        }
        if ((a[i + 1] < '0' || a[i + 1] > '9') && c != 0)
        {
            printf("%10d\n", b);
            b=0;
            c = 0;
        }
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值