题解 | #字符串分隔#
字符串分隔
https://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7
#include<bits/stdc++.h>
using namespace std;
int main() {
string str;
while(getline(cin, str)) {
int len = str.size();
int remainder = len % 8;
if(remainder != 0) {
str.append(8-remainder, '0');
}
for(int i=0; i<len; i+=8) {
cout << str.substr(i,8) << endl;
}
}
return 0;
}


美的集团公司福利 859人发布