lvm9

Untitled

Mar 2nd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. package clase_abstracta;
  2. public class Serpiente extends Animal
  3. {
  4. public Serpiente() {
  5. }
  6. // ----------------------------
  7. @Override
  8. public void mover() {
  9. System.out.println( this.getNombre() + "arrastrando");
  10. }
  11. }
Add Comment
Please, Sign In to add comment