import java.time.chrono.ThaiBuddhistChronology; import javax.swing.Box; class box { float ancho; float alto ; float profundidad; float volumen; public box (float ancho,float alto,float profundidad){ this.ancho=ancho; this.alto=alto; this.profundidad=profundidad; } public box (){ } public box (float ancho){ this.ancho=ancho; this.alto=ancho; this.profundidad=ancho; } public float calcular_Volumen(){ this.volumen=this.ancho * this.alto * this.profundidad; return this.volumen; } }C:\Users\user\Documents\Javier Ferreira\Javier Bootcamp class BoxPeso extends box { float peso; public BoxPeso (float ancho,float alto,float profundidad,float peso){ super(ancho,alto,profundidad); this.peso=peso; } public BoxPeso (){ super(); } public BoxPeso (float ancho){ super(ancho); } /* public float RetornaPeso(){ return this.peso; }*/ } class Enviar extends BoxPeso{ public Enviar (float ancho,float alto,float profundidad,float peso){ super(ancho,alto,profundidad,peso); } public Enviar(){ super(); } public Enviar(float ancho){ super(ancho); } } public class boxpropiedades { public static void main(String[] args) { Enviar envio = new Enviar(2,3,4,5); System.out.println("El volumen es "+envio.calcular_Volumen()+" con peso de "+envio.peso); System.out.println(""); // Envio con 1 parametro } }