题解 | #字符串分隔#

字符串分隔

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

#include <iostream>
using namespace std;

int main() {
    string s;
    getline(cin, s);
    while (s.length() >= 8) {
        cout << s.substr(0, 8) << endl;
        s = s.substr(8);
    }
    if (!s.empty()) {
        cout << s;
        for (int i = s.length(); i < 8; i++)
            cout << "0"; 
    }
    return 0;        
}
// 64 位输出请用 printf("%lld")

思路:大于等于8的字符串,利于substr循环输出即可,小于8的字符串并且非空的在后面补字符串0即可

全部评论

相关推荐

马上要带我人生中的第一个实习生了,想问问大家都喜欢什么的mentor?好让我有个努力的目标
拒绝996的劳伦斯很勇敢:看得见目标且护犊子的 具体就是明确告诉组员要干什么,然后当别的组甩dirty work时能护的组自家新人
点赞 评论 收藏
分享
喜欢核冬天的哈基米很想上市:会爆NullPointerException的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务