输入一个字符串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;
}