题解 | #字符串分隔#

字符串分隔

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

全部评论

相关推荐

昨天 09:08
裁应届生,一分钱补偿没有,离职了还脑控你,跟踪你,定位你,丁东服务是搞系每一个人
牛客吹哨人:建议细说...哨哥晚点统一更新到黑名单:不要重蹈覆辙!25届毁意向毁约裁员黑名单https://www.nowcoder.com/discuss/1317104
叮咚买菜稳定性 9人发布 投递叮咚买菜等公司10个岗位 >
点赞 评论 收藏
分享
点赞 评论 收藏
分享
11-09 01:22
已编辑
东南大学 Java
高级特工穿山甲:羡慕,我秋招有家企业在茶馆组织线下面试,约我过去“喝茶详谈”😢结果我去了发现原来是人家喝茶我看着
点赞 评论 收藏
分享
字节 飞书绩效团队 (n+2) * 15 + 1k * 12 + 1w
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务