Guest User

Untitled

a guest
Jan 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. HashMap<String, String> sozluk = new HashMap<String, String>();
  2. sozluk.put("pencil", "kalem");
  3. sozluk.put("computer", "bilgisayar");
  4. sozluk.put("bottle", "şişe");
  5. sozluk.put("shoe", "ayakkabı");
  6.  
  7. sozluk.forEach((kelimeEN, kelimeTR) -> System.out.print(kelimeEN + "-" +kelimeTR + " | "));
Add Comment
Please, Sign In to add comment