题解 | #字符串分隔#

字符串分隔

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

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

int main() {
    string str;
    string str8="00000000";
    getline(cin,str);
    int len=str.length();
    for(int i=0;i<len;i=i+8){
        if(i+8>len){
            str8=str.substr(i,len-i);
            str8.append(8-(len-i),'0');
        }
        else if(i+8<=len){
            str8=str.substr(i,8);
        }
        cout<<str8<<endl;

    }
        
    return 0;
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

11-14 16:13
已编辑
重庆科技大学 测试工程师
Amazarashi66:不进帖子我都知道🐮❤️网什么含金量
点赞 评论 收藏
分享
10-15 15:00
潍坊学院 golang
跨考小白:这又不是官方
投递拼多多集团-PDD等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务