国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > 互联网 > POJ 3438 Look and Say(水题)

POJ 3438 Look and Say(水题)

来源:程序员人生   发布时间:2014-10-08 19:47:59 阅读次数:3051次

【题意简述】:就是说一串数字,现在让我们换一种方式去描述它,用该数字的个数和数字本身去重新描述这串数字。

【分析】:简单模拟一下。

//248k 641ms #include<iostream> using namespace std; int main() { int t; char digits[1001]; cin>>t; while(t--) { cin>>digits; int len = strlen(digits); int count = 1; for(int i = 0;i<len;i++) { if(digits[i] == digits[i+1]) count++; else{ cout<<count<<digits[i]; count = 1; } } cout<<endl; } return 0; }


生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生