Please use your time today to type in the Circle class that we wrote in class last week.
When you create a project, create 2 classes: Circle class and a driver class.
In your driver class, please write a main which instanciates a Circle object, and makes a call to each of the Circle methods, followed by an output that states the result of this call.
For example:
Circle myCircle = new Circle ();
myCircle.setRadius (6);
double r = myCircle.getRadius();
System.out.println (“This is a circle with radius: ” + r);
I’m learning a lot, but miss you guys. See you Monday.