CJCoding With Joseph
15per day

Use this Pointer

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

Your task:
1. Write the constructor Box(int width, int height) and store the two parameters in the fields.
   - The parameter names match the field names, so use this->width and this->height.
2. Complete getWidth() and getHeight() so they return the fields (both must be const).

Do NOT write a main function.

Expected Output:

3 4
Topics:
Classes
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)

Your Output

Run your code to see the output here...

Test Cases

Run your code to see test case results.