Advertisement
Dido09

Cat

Jan 21st, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package smth;
  2.  
  3. public class CatManipulating {
  4.  
  5. public static void main(String[] args) {
  6. Cat someCat = new Cat();
  7.  
  8.  
  9. someCat.sayMiau();
  10.  
  11. System.out.printf("The color of cat %s is %s.%n",
  12.  
  13. someCat.name, someCat.getColor());
  14.  
  15.  
  16. Cat myBrownCat = new Cat("Johnny", "white");
  17.  
  18.  
  19. myBrownCat.sayMiau();
  20.  
  21. System.out.printf("The color of cat %s is %s.%n",
  22.  
  23. myBrownCat.name, myBrownCat.getColor());
  24.  
  25. }
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement