2873: 字符串p型编码 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2873: 字符串p型编码 import java.util.Scanner; public class t_2873 …… 题解列表 2024年02月16日 0 点赞 0 评论 42 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[10001],str1[10001]; get…… 题解列表 2023年06月10日 0 点赞 0 评论 84 浏览 评分:0.0
编写题解 2873: 字符串p型编码 摘要:解题思路:先在目标字符串加一个空格方便循环判断,而且count初始定义为1,意为从当前字符串的下一位开始算长度.在循环中判断,如果下一个字符和当前字符相同,count就++,否则输出;循环条件str.…… 题解列表 2024年03月26日 0 点赞 0 评论 209 浏览 评分:0.0
2873: 字符串p型编码 摘要:解题思路:注意事项:参考代码:s = input().strip()s = s + "a"n = len(s)i = 0while i != n-1: c = 1 while s[i] =…… 题解列表 2024年08月03日 0 点赞 0 评论 94 浏览 评分:0.0
字符串p型编码+遍历思想 摘要:解题思路:利用遍历的思想,将一位数与后面的数进行比较,当遇到不同的数时,停止记数,并进行输出,在跳过累加的数,进行下一个数的记数。注意事项:参考代码:#include<stdio.h>#include…… 题解列表 2023年02月04日 0 点赞 0 评论 142 浏览 评分:0.0
2873: 字符串p型编码 摘要:解题思路:注意事项:参考代码:s = input() + ' ' a = "" b = 1 for i in range(len(s) - 1): if s[i] ==…… 题解列表 2024年03月26日 0 点赞 0 评论 125 浏览 评分:0.0
简单易懂的代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<stdlib.h>int main(){ int i,j,len,sum; …… 题解列表 2024年05月14日 0 点赞 0 评论 133 浏览 评分:0.0
java字符串p型编码 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static String pEncoding(String…… 题解列表 2023年12月02日 0 点赞 0 评论 83 浏览 评分:0.0
2873: 字符串p型编码 摘要:解题思路: 遍历遍历过程中,判断当前字符str[i]是否与下一个字符str[i + 1]相同。如果相同,表示当前字符连续出现,将计数器count加1。如果不相同,表示当前字符不再连续出现,将当前计数值…… 题解列表 2023年07月08日 0 点赞 0 评论 96 浏览 评分:2.0
2873: 字符串p型编码-C++-题解 摘要:## 20行搞定!上代码! ```cpp #include using namespace std; int main() { string a; getline(cin,a); …… 题解列表 2023年07月27日 0 点赞 0 评论 155 浏览 评分:8.7