题解 | #字符串分隔#

字符串分隔

https://www.nowcoder.com/practice/d9162298cb5a437aad722fccccaae8a7

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

// int main() {
//     int a, b;
//     while (cin >> a >> b) { // 注意 while 处理多个 case
//         cout << a + b << endl;
//     }
// }
// // 64 位输出请用 printf("%lld")

#include <bits/stdc++.h>
using namespace std;

int main(){
    string str;
    while(cin >> str)
    {
        while (str.size() > 8){
            cout << str.substr(0, 8) << endl;
            str = str.substr(8);
        }
        str.resize(8, '0');
        cout << str << endl;
    }
    return 0;
}

全部评论

相关推荐

2024-12-18 12:05
华东师范大学 golang
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务