Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * @author Muhammad Bagus Istighfar
- * @version 28-10-20
- */
- import java.util.*;
- public class HashTableContoh
- {
- public static void main (String args[])
- {
- Hashtable<Integer,String> hm=new Hashtable<Integer,String>();
- hm.put(100,"Bagus");
- hm.put(101,"Ibram");
- hm.put(102,"Eka");
- hm.put(103,"Nova");
- for(Map.Entry m:hm.entrySet())
- {
- System.out.println(m.getKey()+" "+m.getValue());
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment