public class ShapeUtil { public static void printArea(shape s) { double area = s.getArea(); System.out.println("The area of the shape is: " + area); } }