题解 | #字符串分隔#

字符串分隔

https://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7

import java.util.List;
import java.util.ArrayList;
import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        while (in.hasNext()) { // 注意 while 处理多个 case
            String s = in.next();
            if (s == null || "".equals(s)) {
                continue;
            }

            if (s.length() < 8) {
                while (s.length() < 8) {
                    s += "0";
                }
                System.out.println(s);
                continue;
            }

            if (s.length() == 8) {
                System.out.println(s);
                continue;
            }

            if (s.length() > 8) {
                List<String> list = new ArrayList<>();
                int start = 0;
                while (start < s.length() - 8) {
                    list.add(s.substring(start, start + 8));
                    start += 8;
                }
                list.add(s.substring(start));

                String last = list.get(list.size() - 1);
                if (last.length() < 8) {
                    while (last.length() < 8) {
                        last += "0";
                    }
                    list.set(list.size() - 1, last);
                }
                for (String s1 : list) {
                    System.out.println(s1);
                }
            }
        }
    }
}

全部评论

相关推荐

点赞 评论 收藏
分享
点赞 评论 收藏
分享
鬼迹人途:你去投一投尚游游戏,服务器一面,第一个图算法,做完了给你一个策略题,你给出方案他就提出低概率问题,答不上当场给你挂
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务