题解 | #字符串分隔#

字符串分隔

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

题目 字符串分隔

日期:2022/03/16

思路

先把字符串长度填充成8的倍数,再用substring()分隔输出

代码

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();
        int len = str.length();
        if(len%8!=0){
            for(int i=0;i<(8-len%8);i++)
                str+='0';
        }
        for(int i=0;i<str.length()/8;i++){
            String s = str.substring(8*i,8*i+8);
            System.out.println(s);
        }
    }
}
全部评论

相关推荐

一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务