码迷,mamicode.com
首页 > 其他好文 > 详细

查找输入字符串中出现字符次数最多的那个字和重复次数

时间:2017-05-20 00:04:13      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:for   重复   system.in   public   ==   oid   system   ann   i++   

public class chongfu {
//找出字符串中重复次数最多的那个字符;
/**
*

public static void main(String[] args){
System.out.println("请输入字符串");
Scanner a = new Scanner(System.in);
String b=a.nextLine();


int count=0;
int d=0;
char t = 0;

for(int i=0;i<b.length();i++){
count=0;
char c=b.charAt(i);
for(int j=0;j<b.length();j++){
if(c==b.charAt(j)){

count++;
if(d<count){
d=count;
t=b.charAt(j);
}
}

}

}
System.out.println("输入 的字符串中出现次数最多的字符是"+t+";总共出现"+d+"次");
}
* @param args
*/
}

 

 

这个可以找到正常的   担当出现两个或多个字符串的次数相同且都是出现次数最多的时,只出现第一个

查找输入字符串中出现字符次数最多的那个字和重复次数

标签:for   重复   system.in   public   ==   oid   system   ann   i++   

原文地址:http://www.cnblogs.com/lijava/p/6880543.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!