解题思路:循环遍历, 很通俗易懂的解法!

注意事项:无

参考代码:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;

int main(){
	int n;
	cin >> n;
	while (n--){
		string a;
		string t = "";
		int j, i;
		cin >> a;
		for (i = 0 ; i < a.size(); i++){
			char temp = a[i];
			int num = 1;
			for (j = i + 1; j < a.size(); j++){
				if (a[j] != temp) break;
				num++;
			}
			if (num == 1) t += temp;
			else {
				t += to_string(num);
				t += temp;
			}
			i = j-1;
		}
		cout << t <<endl;
	}
	return 0;
}


 

0.0分

1 人评分

  评论区

  • «
  • »