import java.util.*; public class Main{ public static void main(String[] args) { HashMap<Character,Integer> map = new HashMap<Character, Integer>(); Scanner sc = new Scanner(System.in); String str = sc.nextLine(); int value; for (int i = 0; i < str.length(); i++) { //判断是否存在"键"不存在则创建 if(!map.containsKey(str.charAt(i))){ map.put(str.charAt(i),1); }else { value = map.get(str.charAt(i)); map.put(str.charAt(i),value += 1); } } Collection<Integer> cl = map.values(); Object num[] = cl.toArray(); Arrays.sort(num); // 先把object对象转换成String,在用Inetger里的parseInt转成int int max=Integer.parseInt(num[num.length-1].toString()); int min=Integer.parseInt(num[0].toString()); System.out.println(max-min); } }
0.0分
0 人评分
川哥的吩咐 (C++代码)浏览:1076 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:543 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:674 |
WU-陶陶摘苹果2 (C++代码)浏览:1018 |
母牛的故事 (C语言代码)浏览:1451 |
幸运数 (C++代码)浏览:1309 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:541 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:903 |
Hello, world! (C语言代码)浏览:766 |
1124题解浏览:630 |