Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.24 KB | None | 0 0
  1. package MyLessons;
  2.  
  3. public class Catsitter {
  4.  
  5.     public void toCare(Cat kitty) {
  6.         if (kitty.isHungry());{
  7.             kitty.eat();
  8.         }
  9.         if (kitty.isThirsty());{
  10.             kitty.drink();
  11.         }
  12.  
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement