document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * Hash Table contoh
  3.  *
  4.  * @author hanifafauziah
  5.  * @version1-25-Oktober-2020
  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.         hm.put(100,"Andri");
  12.         hm.put(102,"Roni");
  13.         hm.put(101,"Fahrul");
  14.         hm.put(103,"Badu");
  15.         for(Map.Entry m:hm.entrySet()){
  16.             System.out.println(m.getKey()+" "+m.getValue());
  17.         }
  18.     }
  19. }
');