统计这句话中每个字母出现的次数 并 打印次数最多和最少的两个字母

package com.zhiyou.entity;

import java.util.HashMap;
import java.util.Map;

public class ZYtongjicishu {

	public static  void main(String[] args) {
		// 统计这句话中每个字母出现的次数
		//打印次数最多和最少的两个字母
		String str ="The best way to cheer yourself up is to try to cheer somebody else up.";
	       Map maps = new HashMap();
	       for(int i=0;i max) ? cnt[c] : max; // 计数并检测最大出现次数
	        }
	        System.out.println ("出现次数最多的次数:"+max);
	      
	}

}

 

你可能感兴趣的:(java)