题解 | #字符串分隔#

字符串分隔

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

#include <iostream>
using namespace std;
int main()
{
    // int lenth=0;
    // char s[100];
    // int num;//需要补0的个数
    // while(cin>>s[lenth])
    // {
    //     if(s[lenth])
    //     {
    //         lenth++;
    //     }
    // };
    // if(lenth%8)
    // {
    //     num =8-(lenth%8);
    // }
    // else
    // {
    //     num = 0;
    // }
    // for(int i = 0;i<num;i++)
    // {
    //     s[lenth++]='0';
    // }
    // for(int i = 1;i<=lenth;i++)
    // {
    //     if(i%8)
    //     {
    //         cout<<s[i-1];
    //     }
    //     else
    //     {
    //         cout<<s[i-1]<<endl;
    //     }
    // }
    int lenth = 0;
    string s;
    cin>>s;
    lenth = s.size();
    int sub;
    if(lenth%8)
    {
        sub = 8-(lenth%8);
    }
    else
    {
        sub=0;
    }
    for(int i =0;i<sub;i++)
    {
        s[lenth++]='0';
    }
    for(int i=1;i<=lenth;i++)
    {
        if(i%8)
        {
            cout<<s[i-1];
        }
        else
        {
            cout<<s[i-1]<<endl;
        }
    }
}

全部评论

相关推荐

offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
球球别再泡了:坏,我单9要了14
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务