题解 2873: 字符串p型编码

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

筛选

2873: 字符串p型编码

摘要:解题思路:注意事项:参考代码:s = input().strip()s = s + "a"n = len(s)i = 0while i != n-1:    c = 1    while s[i] =……

简单易懂的代码

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){    int i,j,len,sum; ……

编写题解 2873: 字符串p型编码

摘要:解题思路:先在目标字符串加一个空格方便循环判断,而且count初始定义为1,意为从当前字符串的下一位开始算长度.在循环中判断,如果下一个字符和当前字符相同,count就++,否则输出;循环条件str.……

2873: 字符串p型编码

摘要:解题思路:注意事项:参考代码:s = input() + &#39; &#39; a = "" b = 1 for i in range(len(s) - 1):     if s[i] ==……

2873: 字符串p型编码

摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2873: 字符串p型编码 import java.util.Scanner; public class t_2873 ……

java--study||O.o

摘要:参考代码:import java.util.Scanner; public class Main  { public static void main(String[] args)     ……

字符串p型编码

摘要:解题思路:注意事项:参考代码:myStr=input().strip()myStr1=""i=1for t in range(len(myStr)-1):    if myStr[t+1]==mySt……

java字符串p型编码

摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {    public static String pEncoding(String……

2873: 字符串p型编码

摘要:解题思路: 遍历遍历过程中,判断当前字符str[i]是否与下一个字符str[i + 1]相同。如果相同,表示当前字符连续出现,将计数器count加1。如果不相同,表示当前字符不再连续出现,将当前计数值……