解题思路:
注意事项:
参考代码:
package arrLast; //题目 2911: 连续出现的字符 import java.util.Scanner; public class t_2911 { public static void main(String args []) { Scanner sc=new Scanner(System.in); int k=sc.nextInt(); String str=sc.next(); int cont=1;int temp=0; for(int i=0;i<str.length()-1;i++) { if(str.charAt(i)==str.charAt(i+1)) cont++; else { if(cont>=k) {System.out.println(str.charAt(i));return;} cont=1; }} System.out.println("NO"); } }
0.0分
0 人评分
点我有惊喜!你懂得!浏览:1007 |
C语言训练-最大数问题 (C语言代码).........关于-1浏览:762 |
C语言训练-计算1~N之间所有奇数之和 (C语言代码)浏览:757 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1055 |
剔除相关数 (C语言代码)浏览:1058 |
C二级辅导-进制转换 (C语言代码)浏览:657 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:543 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:564 |
C语言程序设计教程(第三版)课后习题8.5 (C语言代码)浏览:600 |
C语言程序设计教程(第三版)课后习题5.5 (C语言代码)浏览:590 |