CJCoding With Joseph
15per day

Abstract Shape with Circle

An abstract class Shape is provided with an abstract method double area(). Complete the Circle class that extends Shape.

Requirements:
1. Store the radius passed to the constructor.
2. Implement area() to return Math.PI * radius * radius.

Do NOT write a main method.

Expected Output:

78.54
Topics:
Abstract ClassesClasses
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (sysout, psvm, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.