public interface ShapeArea { double getArea(); }class MyRectangle implements ShapeArea { private double length; private double width;
MyRectangle(double length, double width) {
this.length = length;
this.width = width;
}
public double getArea() {