题解 | 字符串分隔

字符串分隔

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

#include <iostream>
using namespace std;

int main() {
    string s;cin>>s;
    s = " "+s;
    for(int i = 1;i<s.length();i++){
        cout<<s[i];
        if(i%8==0&&i!=0){
            cout<<'\n';
        }
        
    }
    if((s.length()-1)%8==0){
        return 0;
    }
    for(int i = 1;i<=8-(s.length()-1)%8;i++){
        cout<<'0';
    }
    return 0;
}
// 64 位输出请用 printf("%lld")

遍历字符串,每8位输出换行即可,最后一行特判一下输出0的个数即可

活动地址https://www.nowcoder.com/discuss/726480854079250432

#牛客春招刷题训练营#
全部评论

相关推荐

评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务