// Tyler Mi // A class representing a Circle public class Circle extends Shape { private double radius; // Constructs a circle with the given radius public Circle(double radius) { super("circle"); this.radius = radius; } // Returns the area of the circle public double area() { return Math.PI * radius * radius; } }