CJCoding With Joseph

Expression-Bodied Property

Create a class Rectangle whose constructor stores a private int width and height. Add an expression-bodied read-only property Area (using =>) that returns width * height. Do not write a Main method.

For new Rectangle(3, 4) the program prints:
12

Expected Output:

12
Topics:
Encapsulation
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.