题目描述
•连续输入字符串,请按长度为8拆分每个字符串后输出到新的字符串数组;
•长度不是8整数倍的字符串请在后面补数字0,空字符串不处理。
输入描述:
连续输入字符串(输入2次,每个字符串长度小于100)
输出描述:
输出到长度为8的新字符串数组
输入例子:
abc
123456789
输出例子:
abc00000
12345678
90000000
#include <iostream>
using
namespace
std;
int
main(){
string str;
while
(cin>>str){
while
(str.size()>8)
{
cout << str.substr(0,8) <<endl;
str=str.substr(8);
}
cout << str.append(8-str.size(),
'0'
) << endl;
//不够8位的补0
}
}
附录: append()的用法:http://blog.csdn.net/air_wswn/article/details/7785739