Untitled

 avatar
unknown
java
2 years ago
415 B
5
Indexable
public class Main {
    public static void main(String[] args) {
        CPU cpu = new CPU("Intel", 4096, 2.7);
        Laptop laptop = new Laptop("HP", 250, cpu);

        laptop.printLaptopData();

        laptop.execute();

        CPU cpu2 = new CPU("Intel", 3200, 2.3);
        Laptop laptop2 = new Laptop("Acer", 250, cpu);

        laptop2.printLaptopData();
        laptop2.execute();
    }
}
Editor is loading...