题解 2874: 行程长度编码

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

行程长度编码(一个for完美解决)

摘要:解题思路:将每个字符存入字符数组,然后从头开始检查每个字符重复次数注意事项:该解法每轮检查会让首元素与自身比较,所以连续长度len得初始化为0;注意最后一次比较得让结果打印出来,利用'……

2874: 行程长度编码

摘要:解题思路:注意事项:参考代码:s=input().strip()s=s.upper()s=s+&#39;0&#39;n=len(s)i=0whilei<=n-2:&nbs……

简单易懂代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>intmain(){&……

java--study||O.o

摘要:参考代码:import&nbsp;java.util.Scanner;public&nbsp;class&nbsp;Main&nbsp;{public&nbsp……

行程长度编码

摘要:解题思路:按着上一道题修改即可注意事项:参考代码:myStr=input().strip()myStr1=""i=1fortinrange(len(myStr)-1):&n……

行程长度编码

摘要:参考代码:```c#include#include#includeintmain(){chara[1000];gets(a);intlen=strlen(a);charc;for(inti=0;i……

c语言代码解决问题

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>intmain(){&nbsp;&nbsp;&nbs……

行程长度编码

摘要:解题思路:注意事项:参考代码:publicclassMain{&nbsp;&nbsp;&nbsp;&nbsp;publicstaticvoidmain(String[]……