题解 | #表示数字#

表示数字

http://www.nowcoder.com/practice/637062df51674de8ba464e792d1a0ac6

#include<iostream>
using namespace std;
int main()
{
    string str;
    while(cin>>str)
    {
        int i=0;
        string res;
        while(str[i]!='\0')
        {
            if(str[i]>='0'&&str[i]<='9')
            {
                res.push_back('*');
                while(str[i]!='\0'&&str[i]>='0'&&str[i]<='9')
                {
                    res.push_back(str[i]);
                    i++;
                }
                res.push_back('*');
            }
            else
            {
                res.push_back(str[i]);
                i++;
            }
        }
        cout<<res<<endl;
    }
    return 0;
}
全部评论

相关推荐

三年之期已到我的offer快到碗里来:9硕都比不上9本
点赞 评论 收藏
分享
牛客737698141号:他们可以看到在线简历的。。。估计不合适直接就拒了
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务