ricskooo

Untitled

Mar 7th, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. public class Main {
  2. public static void main (String args[]){
  3. Building buildObject = new Building(4,true);
  4. Room roomOnbject = new Room(4);
  5. Room roomObject2 = new Room(7);
  6. Person personObject = new Person("pista",120,true);
  7.  
  8.  
  9. buildObject.addRoom(roomOnbject);
  10. buildObject.addRoom(roomObject2);
  11.  
  12. System.out.println(buildObject.toString());
  13.  
  14.  
  15. personObject.enterRoom(personObject,0);
  16.  
  17.  
  18.  
  19.  
  20.  
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment