Guest User

Untitled

a guest
Jun 22nd, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. package com.yahoo.hlctt;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6. Cat catMurzik = new Cat("Murzik", 4, 3.3, true);
  7. Cat catChurchill = new Cat("Churchill", 10, 2, false);
  8.  
  9. catMurzik.meow();
  10. catChurchill.meow();
  11. catMurzik.sleep();
  12. catChurchill.sleep();
  13.  
  14. System.out.println("Happy Birthday, " + catMurzik.getName());
  15. catMurzik.setAge(catMurzik.getAge() + 1);
  16.  
  17. System.out.println(catMurzik.getName() + " now at age " + catMurzik.getAge());
  18. }
  19.  
  20. }
Add Comment
Please, Sign In to add comment