Someone who can help me to write and explain a code to write a class that handles rectangle rectangles with height, width, position and girth. The width and the height is set by the rectangle is created and the position means automatically to the origin x = 0 and y = 0. Using this method can move the rectangle changes.
I have write this code now, as you will see Im an very big noob:
public class Rectangle { public int length=0; public int height=0; public int width=0; public Rectangle(int x, int y { length=x; height=y; } public Rectangle(int x, int y, int z) { length=x; height=y; width=z; } }