Untitled

Anonymous
plain_text
02/14/2024 2:27 AM
528 B
18
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;
    }
}
Editor is loading...
Leave a Comment