document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import java.util.*;
  2. class HashTableContoh
  3. { public static void main(String args[])
  4.     { Hashtable<Integer,String> hm=new Hashtable<Integer,String>();
  5.         hm.put(100,"Andri");
  6.         hm.put(102,"Roni");
  7.         hm.put(101,"Fahrul");
  8.         hm.put(103,"Badu");
  9.         for(Map.Entry m:hm.entrySet()){
  10.             System.out.println(m.getKey()+" "+m.getValue());
  11.         }
  12.     }
  13. }
');