题解 | #字符串分隔#

字符串分隔

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

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext()) {
            String str = scanner.nextLine();
            int b = str.length() / 8;
            int a = str.length() % 8;
            String c = "00000000";
            if (b > 0) {
                for (int i = 0; i < b; i++) {
                    System.out.println(str.substring(i * 8, 8 * (i + 1)));
                }
                if (a != 0) {
                    System.out.println(str.substring(str.length() - a, str.length()) + c.substring(a, 8));
                }
            }else {
                System.out.println(str.substring(str.length() - a, str.length()) + c.substring(a, 8));
            }
        }
    }

}
全部评论

相关推荐

头像
11-06 10:58
已编辑
门头沟学院 嵌入式工程师
双非25想找富婆不想打工:哦,这该死的伦敦腔,我敢打赌,你简直是个天才,如果我有offer的话,我一定用offer狠狠的打在你的脸上
点赞 评论 收藏
分享
10-30 22:18
已编辑
毛坦厂中学 C++
点赞 评论 收藏
分享
评论
6
1
分享
牛客网
牛客企业服务