Untitled
unknown
plain_text
2 years ago
395 B
9
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