标签:
。输入一个字符串,查找出出现次数最多的字符
1 public static void main(String[] args) { 2 // TODO Auto-generated method stub 3 4 System.out.println("请输入一个字符串:"); 5 String str = new Scanner(System.in).next(); 6 int[] a = new int[127]; 7 char maxChar = 0; 8 int max = 0; 9 for(int i=0; i<str.length(); i++){ 10 char c = str.charAt(i); 11 if(++a[c] > max){ 12 max = a[c]; 13 maxChar = c; 14 } 15 } 16 System.out.println(maxChar + " 出现了 " + max + " 次"); 17 }
这里需要注意的知识点是:
1. 根据索引查找字符串中相应的字符
标签:
原文地址:http://www.cnblogs.com/cfb513142804/p/4221444.html