public class Rectangle { private int width; private int height;
public Rectangle(int aWidth, int aHeight) { //Constructing a Rectangle: aWidth by aHeight this.width = aWidth; this.height = aHeight; }