题解 | #字符串分隔#把合适个数的 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;
}
全部评论

相关推荐

10-11 17:45
门头沟学院 Java
走吗:别怕 我以前也是这么认为 虽然一面就挂 但是颇有收获!
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务