题解
2023-08-08 16:38:49
发布于:浙江
4阅读
0回复
0点赞
#include<bits/stdc++.h>
using namespace std;
int main(){
string str;
int n ,count = 0;
cin >> str >> n;
while (n){ //重复执行直到n为0
string _str;
for (int i = 0 ; i < str.size() ; i = i){
int j = i;
while (j < str.size() && str[i] == str[j])
j++;
count = j - i;
_str += to_string(count) + str[i]; //利用to_string函数将count转换成字符串
i = j;
}
n--;
str = _str;
}
cout << str;
}
这里空空如也
有帮助,赞一个