Advertisement
lvm9

Untitled

Mar 2nd, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. package clase_abstracta;
  2.  
  3. public class main {
  4.  
  5. public static void main(String[] args) {
  6.  
  7. Pajaro pajaro1 = new Pajaro();
  8. Serpiente serpiente1 = new Serpiente();
  9. Pez pez1 = new Pez();
  10.  
  11. pajaro1.mover();
  12. serpiente1.mover();
  13. pez1.mover();
  14.  
  15.  
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement