Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. import classes.Map;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7.  
  8. System.out.println("Hello World!");
  9.  
  10.  
  11. Map nowaMapka = new Map();
  12.  
  13. nowaMapka.setValue(5, 5);
  14. nowaMapka.setValue(6, 6);
  15. nowaMapka.setValue(7, 7);
  16. nowaMapka.setValue(8, 8);
  17. nowaMapka.setValue(9, 9);
  18. nowaMapka.setValue(10, 10);
  19.  
  20.  
  21.  
  22.  
  23.  
  24.  
  25. nowaMapka.write();
  26.  
  27. }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement