CJCoding With Joseph
15per day

Rectangle With Width and Height

You are building a Rectangle class. It has two private int fields: width and height.

Your task:
1. Write the constructor Rectangle(int width, int height) and store the two parameters in the fields.
2. Complete getWidth() and getHeight() so they return the fields.

IMPORTANT: Do NOT write a main method. A hidden Main will create new Rectangle(4, 7) then print width and height on separate lines.

Expected Output:
4
7

Expected Output:

4
7
Topics:
Classes
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.