Write a circle class with your lab section containing
the following methods:
- public static double circumference(double r)
Precondition: r > 0
Method should exit if precondition is false
- public static double area(double r)
Precondition: r > 0
Method should exit if precondition is false
- A main method for testing both of the above.
Tell them to include the following libraries:
import java.util.*; // Date class
Solution