题解 | #在字符串中找出连续最长的数字串#

在字符串中找出连续最长的数字串

https://www.nowcoder.com/practice/2c81f88ecd5a4cc395b5308a99afbbec

#include<iostream>
using namespace std;


int main()
{
    string s;
    
    while(cin>>s){
        int len=s.length();
        string res="";
        string t="";
        int i=0;
        int cnt=0;
        int ans=0;
        while(i<len){
            cnt=0;
            if(!isdigit(s[i])){
                i++;
                t="";
            }else{
                while(isdigit(s[i])&&i<len){
                    t+=s[i++];
                    cnt++;
                }
                if(cnt>ans){
                    res=t;
                    ans=cnt;
                    cnt=0;
                    t="";
                }else if(cnt==ans){
                    res+=t;
                    t="";
                }
            } 
        }
        cout<<res<<","<<ans<<endl;
    }

    return 0;
}

全部评论

相关推荐

11-01 08:48
门头沟学院 C++
伤心的候选人在吵架:佬你不要的,能不能拿户口本证明过户给我。。球球了
点赞 评论 收藏
分享
有趣的牛油果开挂了:最近这个阶段收到些杂七杂八的短信是真的烦
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务