public class Laptop extends Computer { private double displaySize; //tamaņo en pulgadas public Laptop(String brand, double price, int warranty, int cpu, int memory, double d){ super( brand, price, warranty, cpu, memory); displaySize = d; } public void print(){ super.print(); System.out.println("Tamaņo de la pantalla: " + displaySize + "''"); } }