统计单词数量

统计单词数量,第1张

统计单词数量

import java.util.*;

public class WorldCount {
    public static void main(String[] args) {
        Map map = new HashMap();
        while (true) {
            Scanner sc = new Scanner(System.in);
            System.out.println("please input:");
            String word = sc.nextLine();
            if (map.containsKey(word)) {
                Integer value = (Integer) map.get(word);
                value++;
                map.put(word, value);
            } else {
                map.put(word, 1);
            }
            Set keySet = map.keySet();
            for (String key : keySet) {
                Integer value = (Integer) map.get(key);
                System.out.print(key + " " + value + " n");
            }
        }
        


    }
}
 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5481419.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存