MasMasDo

Untitled

Oct 26th, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  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. }
Advertisement
Add Comment
Please, Sign In to add comment