โ Back to Interfaces
Question 634
Interface That Inherits Another Interface
Interface That Inherits Another Interface
IShapeinherits fromIDrawable:IDrawabledeclaresDraw()andIShapeaddsArea(). Write aSquareclass that implementsIShape. It takes a side length in its constructor,Draw()returnsDrawing a square, andArea()returnsside * side. A class that implementsIShapemust supply BOTH methods. Do NOT write aMainmethod. For a square of side 4 the program prints: Drawing a square 16
Expected Output:
Drawing a square 16
Topics:
Interfaces
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.