题解 | #字符串分隔#

字符串分隔

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

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

int main() {
    string str;
    while(getline(cin,str))
    {
        int temp = 0;
        temp =8 - str.size() % 8;
        if(temp == 8)
        temp = 0;
        for(int i = 0; i < temp; i++)
        {
            str += "0";
        }
        int duanshu = str.size() / 8;

        string ans;
        for(int i = 0; i < duanshu; i++)
        {
            ans = str.substr(8*i,8);
            cout<<ans<<endl;
        }
    }
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

点赞 评论 收藏
分享
oppo 应用软开 22*15+0.5*12
拿到了ssp完美:真的坎坷,但是你至少拿到这么多offer了!
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务