参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); String s = scanner.nextLine(); System.out.print(p(s)); } public static String p(String s) { String res = ""; int cnt = 1; for(int i = 1; i < s.length(); i++) { if(s.charAt(i) == s.charAt(i - 1)) cnt++; else { res = res + cnt + s.charAt(i - 1); cnt = 1; } if(i == s.length() - 1) res = res + cnt + s.charAt(i); } return res; } }
0.0分
5 人评分
假币问题 (C++代码)(向上取整的一种处理方式)浏览:1801 |
C二级辅导-统计字符 (C语言代码)浏览:782 |
C语言程序设计教程(第三版)课后习题12.2 (C语言代码)浏览:855 |
C语言训练-斐波纳契数列 (C语言代码)浏览:3015 |
钟神赛车 (C语言代码)浏览:911 |
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:488 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:466 |
Pascal三角 (C语言代码)浏览:1252 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:1000 |
C语言程序设计教程(第三版)课后习题6.5 (C语言代码)浏览:782 |