import java.util.ArrayList; public class InteractiveMath { ArrayList rectangles; ArrayList triangles; public InteractiveMath(){ rectangles = new ArrayList() ; triangles = new ArrayList(); } //@ returns the sum of the areas of the rectangles and triangles public double computeNetArea(){ } }