Advertisement
Guest User

Untitled

a guest
Oct 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. include ("Clases.php");
  2.  
  3. $mazda=new Carro();
  4. $pegaso=new Camion();
  5.  
  6. $mazda->set_color("rojo","mazda");
  7.  
  8. echo "El carro tiene " . $mazda->get_ruedas() . " ruedas <br>";
  9.  
  10. echo "El camion tiene " . $pegaso->get_ruedas() . " ruedas <br>";
  11.  
  12. echo "El camion es de color " . $pegaso->color . "<br>";
  13.  
  14. echo "El camion " . $pegaso->frena();
  15.  
  16. echo "El camion " . $pegaso->girar();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement