Java解 | #HJ4字符串分隔#

Posted 闭关苦炼内功

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java解 | #HJ4字符串分隔#相关的知识,希望对你有一定的参考价值。

字符串分隔

jpg0

import java.util.Scanner;
public class Main{
    public static void main(String[] args){
        Scanner in = new Scanner(System.in);
        while(in.hasNext()){
            String str = in.nextLine();
            while(str.length() > 8){
                String substr = str.substring(0,8);
                System.out.println(substr);
                str = str.substring(8);
            }
            int tmp = 8-str.length();
            for(int i=0;i<tmp;i++){
                str += "0";
            }
            System.out.println(str);
        }
    }
}

以上是关于Java解 | #HJ4字符串分隔#的主要内容,如果未能解决你的问题,请参考以下文章

牛客刷题HJ4 字符串分隔

HJ4 字符串分隔_Scala

HJ4 字符串分隔_Scala

华为机试HJ4:字符串分隔

Python:将 HTML 片段分隔为段落

如何隐藏片段中首选项之间的分隔符