QLUOJ-1332 - 保留整数

输入一个字符串str1,把其中的连续非数字的字符子串换成一个‘*’,存入字符数组str2 中,所有数字字符也必须依次存入 str2 中。输出str2。

Input

输入为一行字符串str1,其中可能包含空格。字符串长度不超过80个字符。

Output

输出处理好的字符串str2。

Examples
input

复制

$Ts!47&*s456  a23* +B9k
output

复制

*47*456*23*9*
Hint

from 软件工程20-1王励翔

#include<iostream>
#include<math.h>
#include<algorithm>
#include<vector>
#include<ctype.h>
#include<cmath>
#include<sstream>
#include<string>
#define PI 3.1415927
using namespace std;
const int N=1e6+1;

int main()
{	std::ios::sync_with_stdio(false);
    std::cin.tie(0);
    std::cout.tie(0);
    string s1,s2;
   	getline(cin,s1);
   	bool flag=false;
   	for(char c:s1)
   	{
   		if(isdigit(c))
   		{
   			s2.push_back(c);
   			flag=false;
		}
		else if(!flag)
		{
			s2.push_back('*');
			flag=true;
		}
	}
	cout<<s2; 
	
  

}
    

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值