题解 | #字符串分隔#把合适个数的 0 加上然后 8 个 8 个输出。
字符串分隔
http://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7
#include<iostream>
#include<cstring>
#include<cstdio>
#include<map>
#include<set>
#include<stack>
#include<vector>
#include<algorithm>
#include<cmath>
#include<fstream>
#include<iomanip>
#include<queue>
#include<list>
#include<cctype>
#define ___ "-------------------------------\n"
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const ll maxn = 100000 + 5;
int main(){
// ios::sync_with_stdio(false);
// ifstream cin("data.txt");
// freopen("data.txt", "r", stdin);
string s;
getline(cin, s);
s += string(8 - ((s.length() % 8) ? (s.length() % 8) : 8), '0');
for(int i = 1; i <= s.length();i++){
cout << s[i - 1];
if(!(i % 8))cout << "\n";
}
return 0;
}