โ Back to Classes
Question 194
Abstract Shape with Circle
Abstract Shape with Circle
An abstract classShapeis provided with an abstract methoddouble area(). Complete theCircleclass that extendsShape. Requirements: 1. Store theradiuspassed to the constructor. 2. Implementarea()to returnMath.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.