题解 | #字符串分隔#

字符串分隔

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

package main

import (
	"bufio"
	"os"
	"fmt"
)

func main() {
	input := bufio.NewScanner(os.Stdin)
	for input.Scan() {
		res := input.Text()
		for len(res) >= 8 {
			fmt.Println(res[:8])
			res = res[8:]
		}
		if len(res) == 0 {
			continue
		}
		fmt.Print(res)
		for i := 0; i < 8-len(res); i++ {
			fmt.Print("0")
		}
		fmt.Println()
	}
}

全部评论

相关推荐

想去夏威夷的小哥哥在度假:5和6才是重点
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务