标签:[] ati class nbsp 字符串数组 system div 连续 length
?连续输入字符串,请按长度为8拆分每个字符串后输出到新的字符串数组;
?长度不是8整数倍的字符串请在后面补数字0,空字符串不处理。
连续输入字符串(输入2次,每个字符串长度小于100)
输出到长度为8的新字符串数组
abc 123456789
abc00000 12345678 90000000
import
java.util.*;
public
class
Main{
public
static
void
main(String[] args){
Scanner sc =
new
Scanner(System.in);
while
(sc.hasNext()){
String s =
new
String(sc.nextLine());
if
(s.length()%
8
!=
0
)
s = s +
"00000000"
;
while
(s.length()>=
8
){
System.out.println(s.substring(
0
,
8
));
s = s.substring(
8
);
}
}
}
}
字符串分隔 ->连续输入字符串,请按长度为8拆分每个字符串后输出到新的字符串数组; ?长度不是8整数倍的字符串请在后面补数字0,空字符串不处理。
标签:[] ati class nbsp 字符串数组 system div 连续 length
原文地址:http://www.cnblogs.com/qiaoyanlin/p/6607124.html