Untitled

 avatar
unknown
plain_text
a year ago
253 B
6
Indexable
public class Laptop extends Computer
{ 
    private double batteryLife;
    public double getBatteryLife()

    {
        return batteryLife;
    }

    public void setBatteryLife(double batteryLife)
    {
        this.batteryLife = batteryLife;
    }
}
Editor is loading...
Leave a Comment