题解 | #字符串分隔#

字符串分隔

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

利用count记录已经处理的字符数,每8个输出一次,并将count置为0,记得最后检查count是否够8,不够补0
# include<iostream>
# include<string>
using namespace std;

int main()
{
    string str;
    while(getline(cin, str))
    {
        int len = str.length();
        string tmp = "";
        int count = 0;
        for(int i=0;i<len;i++)
        {
            tmp+=str[i];
            count++;
            if(count == 8)
            {
                cout<<tmp<<endl;
                tmp = "";
                count = 0;
            }
        }
        if(tmp.length()>0&& count<8)
        {
            while(count<8)
            {
                tmp+='0';
                count++;
            }
        }
        cout<<tmp<<endl;
    }
    return 0;
}


全部评论

相关推荐

10-07 20:48
门头沟学院 Java
不敢追175女神:可能是实习上着班想到后面还要回学校给导师做牛马,看着身边都是21-25的年纪,突然emo了了
点赞 评论 收藏
分享
贺兰星辰:不要漏个人信息,除了简历模板不太好以外你这个个人简介是不是太夸大了...
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-29 12:19
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务