โ Back to Classes
Question 33
Const Area Function
Const Area Function
Create a class Rectangle with private int length and width. Requirements: 1. Write a constructor Rectangle(int length, int width) that sets both fields. 2. Add getArea() that returns length * width and is marked const. Do NOT write a main function.
Expected Output:
12
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.