码迷,mamicode.com
首页 > 其他好文 > 详细

字符串操作

时间:2018-08-13 00:44:44      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:java   system.in   oid   ati   max   close   port   sharp   sha   

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        while(sc.hasNext()) {
            String line = sc.nextLine();
            String[] arr = line.split("[^0-9]+");
            int max = 0;
            String result = "";
            for(int i = 0; i < arr.length; i++) {
                int len = arr[i].length();
                if(len >= max) {
                    result = arr[i];
                    max = len;
                }
            }
            System.out.println(result);
        }
        sc.close();
    }
}

  

字符串操作

标签:java   system.in   oid   ati   max   close   port   sharp   sha   

原文地址:https://www.cnblogs.com/chenxiaobo/p/9465428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!