There is a class named Circle. This class has one field radiusof the double type.
Create two instance methods for this class:
getLengththat returns thedoublerepresenting the length of the circumference of this circle;getAreathat returns thedoublerepresenting the area of this circle.
In your calculations, you may use the special constant Math.PI.
Do not make the field and methods private.