【C/C++】提取用户输入的由数字字符和非数字字符组成的字符串中的数字

编写一个程序,将用户输入的由数字字符和非数字字符组成的字符串中的数字提取出来(例如:输入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() {
	printf("%s", "Please enter a string:");
	char a[200];
	int b[200];
	int c[200];
	memset(b, 0, sizeof(b));
	memset(c, 0, sizeof(c));
	scanf("%s", a);
	int len = strlen(a);
	int temp = 0;
	while (a[temp] != '\0') {
		char c = (a[temp]);
		if (c >= '0' && c <= '9')
			b[temp] = 1;
		temp++;
	}
	int tempp = 0;
	int temp_loc = 0;
	for (int i = 0; i < sizeof(b) / 4-1; i++) {
		if (b[i] == 1 ) {
			if (b[i + 1] == 1) {
				tempp *= 10;
				tempp += a[i] - '0';
			}
			else{
				tempp *= 10;
				tempp += a[i] - '0';

				c[temp_loc]=tempp;
				temp_loc++;
				tempp = 0;
			}
		}
	}
	printf("%s", "the result of output:\n");
	for (int i = 0; i < temp_loc; i++) {
		printf("%10d\n",c[i]);
	}
	/*
	for (int i = 0; i < sizeof(b)/4; i++) {
		printf("%d", b[i]);
	}
	*/
	return 0;
}

  • 3
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值