Write the class definition for a Circle that has one instance variable (attribute) for the radius. This class must have 2 constructors (one is the default, and the other has one argument).
Also define appropriate get- and set- methods, as well as methods to return the diameter, circumference, and area of a circle.
Use the Math class for your calculations.
Now write another class that contains a main method in which you...