题解 | #字符串分隔#

字符串分隔

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);
                }
            }
        }
    }
}

全部评论

相关推荐

10-30 23:23
已编辑
中山大学 Web前端
去B座二楼砸水泥地:这无论是个人素质还是专业素质都👇拉满了吧
点赞 评论 收藏
分享
威猛的小饼干正在背八股:挂到根本不想整理
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务