Untitled

 avatar
unknown
plain_text
a year ago
395 B
3
Indexable
public class Computer
{ 
    private int screenSize; 
    private int memory;
    
    public int getScreenSize()
    {
        return screenSize;
    }

    public void setScreenSize(int screenSize)
    {
        this.screenSize = screenSize;
    }

    public int getMemory()
    {
        return memory;
    }

    public void setMemory(int memory)
    {
        this.memory = memory;
    }
}
Leave a Comment