class ShapeUtil { public static void printArea(Shape shape) { System.out.printf("%.2f%n", shape.getArea()); } }