Encoding 编码问题

Problem Description
Given a string containing only 'A' - 'Z', we could encode it using the following method:

  1. Each sub-string containing k same characters should be encoded to "kX" where "X" is the only character in this sub-string.

  2. If the length of the sub-string is 1, '1' should be ignored.

Input
The first line contains an integer N (1 <= N <= 100) which indicates the number of test cases. The next N lines contain N strings. Each string consists of only 'A' - 'Z' and the length is less than 10000.

Output
For each test case, output the encoded string in a line.

Sample Input
2
ABC
ABBCCC

Sample Output
ABC
A2B3C



```c++
#include<iostream>
#include<string>
using namespace std;
main(){undefined
    int n;
    cin>>n;
    while(n--){undefined
        string a;
        cin>>a;
        int sum=1;
        int t=0,flag=0,x=1;
        for(int i=0;i<a.length()-1;i++){undefined
            if(a[i]==a[i+1]){undefined
                a[i]='1';
            }
         }
        for(int i=0;i<a.length();i++){undefined
            if(a[i]!='1' ){undefined
                if(sum!=1){undefined
                cout<<sum;
                }
                cout<<a[i];
                sum=1;
            }
            else {undefined
                sum++;
             }
         }
         cout<<endl;
    }
}

```