4月24日,Statistics,每日20行。

来源:互联网 发布:巨人网络街篮手游下载 编辑:程序博客网 时间:2024/05/21 17:00
import java.util.*;class Counter {    int i = 1;    public String toString(){        return Integer.toString(i);    }}public class Statistics {    public static void main(String[] args) {        Hashtable ht = new Hashtable();        for(int i = 0; i < 10000; i++){            Integer r = new Integer((int)(Math.random() * 20));            if(ht.containsKey(r)){                ((Counter)ht.get(r)).i++;            }            else{                ht.put(r, new Counter());            }        }        System.out.println(ht);    }}

这里写图片描述

0 0