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

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

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

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while (sc.hasNext()) {
            String text = sc.next();
            String[] arr = text.split("[a-zA-Z]");
            int ans = 0;
            StringBuilder res = new StringBuilder();
            for (String s : arr) {
                if (s.length() > ans) {
                    ans = s.length();
                    res = new StringBuilder(s);
                } else if (s.length() == ans) {
                    res.append(s);
                }
            }
            System.out.printf("%s,%d\n", res, ans);
        }
    }
}

全部评论

相关推荐

爱看电影的杨桃allin春招:我感觉你在炫耀
点赞 评论 收藏
分享
09-27 00:29
东北大学 Java
伟大的麻辣烫:查看图片
阿里巴巴稳定性 75人发布 投递阿里巴巴等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务