2020年蓝桥杯省赛,单词分析

题目要求读取字符串,计算每个字母出现的次数,并找出出现次数最多的字母及其数量。程序使用HashMap存储字符和对应的计数,遍历字符串两次来完成统计,最后找出次数最多的字符并打印。
摘要由CSDN通过智能技术生成

20年蓝桥杯省赛有这么一道题,给你一个字符串,让你计算里面字母出现的次数,然后输出出现次数最多的字母和次数,如图

然后输入的要求为:

输出要求为:

代码如下:

public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        String str = input.nextLine();
        HashMap<Character, Integer> map = new HashMap<>();
        int count = 0;
        int w1[] = new int[100];
        for (int i= 0;i<str.length();i++){
            w1[i] = str.charAt(i);
            count=0;
            for (int j = 0;j<str.length();j++){
                if (w1[i]==str.charAt(j)){
                    count +=1;
                    map.put(str.charAt(j),count);
                }
            }
        }
        char w3 = ' ';
        for (int i = 1;i<map.size();i++){
            if (map.get(str.charAt(i-1))<=map.get(str.charAt(i))){
                
                w3 = str.charAt(i);

            }
        }
        System.out.println(w3);
        System.out.println(map.get(w3));

    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值