public class Computer extends Electronic{ private int cpu; //Velocidad en MHz private int memory; //Tamaņo en MB public Computer(String brand, double price, int warranty, int c, int m){ super(brand, price, warranty); cpu = c; memory =m; } public void print(){ super.print(); System.out.println("Velocidad de CPU: " + cpu + "MHz; Tamaņo de memoria: " + memory+ "MB"); } }