I need help putting this java code into something I can copy/paste.
Given the code below, write a Circle class (and save it in a file named Circle.java) that inherits from the Shape class. Include in your Circle class, a single private field double radius. Also include a method void setRadius(double r) (which also sets area) and a method double getRadius() (which also returns the current radius). Change the accessibility modifier for area in the Shape class to be more appropriate for a base class. Make sure that ShapeDriver's main() method executes and produces the following output:
Shape: area: 78.53981633974483 radius: 5.0
I also have my code that I worked on as a picture as well. Thanks in advance!
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here