Guest User

Untitled

a guest
Jan 21st, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. import java.util.HashMap;
  2.  
  3. class Main {
  4. final static String TERRAMARE = "terramare";
  5. final static String MONT_BLANC = "Mont blanc";
  6. public static void main(String[] args) {
  7. HashMap<String, Long> phonebook = new HashMap<String, Long>();
  8. phonebook.put(TERRAMARE, 380432275389L);
  9. phonebook.put(MONT_BLANC, 380680558887L);
  10. }
  11. }
Add Comment
Please, Sign In to add comment