简介

简单

code

#include <iostream>
#include <string>
using namespace std;

int main() {
    string s;
    while(getline(cin, s)) {
        string h;
        for(int i=0; i<s.size(); i++){
            h += s[i];
            if((i+1) % 8 == 0) {
                cout << h << endl;
                h = "";
            }
        }
        if(h.size() > 0) {
            cout << h;
            for(int j = 0; j<(8 - h.size()); j++) {
                cout << "0";
            }
            cout << endl;
        }
    }
    return 0;
}
posted on 2021-06-22 16:19  HDU李少帅  阅读(49)  评论(0编辑  收藏  举报