📄 statistic.java
字号:
package chapter11;
import java.util.*;
public class Statistic {
public static void main(String args[]){
Random rand=new Random(47);
Map<Integer,Integer> m=new HashMap<Integer,Integer>();
for(int i=0;i<1000;i++){
Integer r=rand.nextInt(10);
Integer freq=m.get(r);
m.put(r, freq==null? 1:freq+1);
}
System.out.print(m);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -