题解 | #字符串分隔#

字符串分隔

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

// #include <iostream>
// #include <string>
// using namespace std;
// int main() {
//     char a;
//     string str={};
//     int count=0;
    
//     do{
//         a = getchar(); // 注意 while 处理多个 case
//         if(count!=8){str.append(a.to_string());count+=1;}
//         else if(count == 8){str.append(count,a);
//         cout<<str<<endl;
//         str.clear();
//         count = 0;}
//     }while(a!='\n');
//     int b = str.size();
//     cout<<str;
//     if(b<8){
//         for(int i = 1;i<=8-b;i++)
//             {
//                 count<<0;
//             }
//     }
// }
#include <iostream>
#include <string>

using namespace std;

int main() {
  string str;
  while (cin >> str) {
    while (str.size() > 8) {
      cout << str.substr(0, 8) << endl;
      str = str.substr(8);
    }
    str.resize(8, '0');
    cout << str << endl;
  }
  return 0;
}

全部评论

相关推荐

11-01 20:03
已编辑
门头沟学院 算法工程师
Amazarashi66:这种也是幸存者偏差了,拿不到这个价的才是大多数
点赞 评论 收藏
分享
喜欢走神的孤勇者练习时长两年半:爱华,信华,等华,黑华
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务