码迷,mamicode.com
首页 > 其他好文 > 详细

poj-3438

时间:2014-05-18 00:04:05      阅读:246      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   tar   

bubuko.com,布布扣
#include<iostream>
#include<string>
#include<cstring>
#include<algorithm>
using namespace std;
int main()
{
    int t;
    string s;
    cin>>t;
    while(t--)
    {
        cin>>s;
        int ls=s.length();
        int ll=1;
        for(int i=1;i<ls;i++)
        {
            if(s[i]!=s[i-1])
            {
                cout<<ll<<s[i-1];
                ll=1;
            }
            else
                ll++;
        }
        cout<<ll<<s[ls-1];
        cout<<endl;
    }
    system("pause");
    return 0;
}
View Code

 

poj-3438,布布扣,bubuko.com

poj-3438

标签:style   blog   class   code   c   tar   

原文地址:http://www.cnblogs.com/baoluqi/p/3734379.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!