题解 | #字符串分隔#

字符串分隔

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

#include <iostream>
using namespace std;

int main() 
{
    string s;
    while(getline(cin,s))
    {
        while(s.size()>8)
        {
            cout<<s.substr(0,8)<<endl;
            s=s.substr(8,s.size()-8);
        }
        s.resize(8,'0');
        cout<<s<<endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

起名字真难233:这名字一看就比什么上海寻梦信息技术有限公司,北京三快网络技术有限公司等高级不少
点赞 评论 收藏
分享
Allen好Iverson:我看牛客都是20-30k的 这个3.9k爆出来有点,哈哈哈哈
点赞 评论 收藏
分享
评论
点赞
1
分享

创作者周榜

更多
牛客网
牛客企业服务