题解 | #字符串分隔#

字符串分隔

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

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str = in.nextLine();
        // 计算要补充的0的个数
        int zeroNum = str.length() % 8 == 0 ? 0 : 8 - str.length() % 8;
        str += String.join("", Collections.nCopies(zeroNum, "0"));
        for (int i = 0; i < str.length(); i += 8) {
            System.out.println(str.substring(i, i + 8));
        }
    }
}

#华为笔试#
全部评论
这是今天的笔试题目嘛
点赞 回复 分享
发布于 2022-09-28 20:47 瑞典

相关推荐

11-08 17:36
诺瓦科技_HR
点赞 评论 收藏
分享
10-11 17:45
门头沟学院 Java
走吗:别怕 我以前也是这么认为 虽然一面就挂 但是颇有收获!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务