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