木鱼


私信TA

用户名:dotcpp0608797

访问量:277

签 名:

等  级
排  名 3235
经  验 1989
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校 广州航海学院
专  业

  自我简介:

TA的其他文章

直接暴力计数
浏览:130

解题思路:

注意事项:

参考代码:



import java.util.Scanner;


public class Main {


public static void main(String[] args) {

// TODO 自动生成的方法存根

Scanner sc=new Scanner(System.in);

char[] ch=sc.nextLine().toCharArray();

// for(char a:ch) {

// System.out.print(a);

// }

int maxd=0;

int[] arr=new int[26];

for(char a:ch) {

arr[a-65]++;

maxd=Math.max(arr[a-65], maxd);

}

for(int i=0;i<26;i++) {

if(arr[i]==maxd) {

System.out.print((char)(i+65));

}

}

System.out.println();



}


}


 

0.0分

1 人评分

  评论区

  • «
  • »