This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package Vehiculos; | |
| public class Avion extends Vehiculos { | |
| private double altitudMaxima; | |
| public Avion(String marca, String modelo, int año, double veloMax, double altitudMaxima) { | |
| super(marca, modelo, año, veloMax); |