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

把一个字符串转化成数字表示

时间:2018-04-04 10:31:34      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:gpo   return   统计   clu   pre   scanf   转化   namespace   字符   

题目大意: 把一个字符串转化成数字表示。AAAA-->4A

解题思路: 直接统计。

 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 char s[100005];
 5 
 6 void solve()
 7 {
 8     int i = 0;
 9     int cnt = 1;
10     char tmp = s[0];
11     for (i = 1; s[i]; ++i)
12     {
13         if (s[i] == tmp)
14         {
15             ++cnt;
16         }
17         else
18         {
19             printf("%d%c", cnt, tmp);
20             cnt = 1;
21             tmp = s[i];
22         }
23     }
24     printf("%d%c\n", cnt, tmp);
25 }
26 
27 int main()
28 {
29     while (scanf("%s", s) != -1)
30     {
31         solve();
32     }
33     return 0;
34 }

 

把一个字符串转化成数字表示

标签:gpo   return   统计   clu   pre   scanf   转化   namespace   字符   

原文地址:https://www.cnblogs.com/djingjing/p/8715105.html

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