Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. public class Eat {
  2. public static void main(String[] args) {
  3. Animal animal1 = new Dog();
  4. Animal animal2 = new Cat();
  5.  
  6. animal1.eat();
  7. animal2.eat();
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement