CJCoding With Joseph

Properties and a Method Together

The interface IRectangle declares two read-only properties, Width and Height, plus an Area() method. The Box class already exposes Width and Height. Complete Area() so it returns Width * Height. Do NOT write a Main method.

For a Box with width 4 and height 5 the program prints:
20

Expected Output:

20
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.