cant understand this program ...

hello ... i need help in this program

Write C++ class named ‘Rectangle’ including the code of the member functions. Use private and public access specifiers (modifiers) in the class ‘Rectangle’ as suitable.
The class ‘Rectangle’ has attributes (data members) length (float) and width (float), each of which defaults to 1.0
The function members of the class ‘Rectangle’ include the following:
• Constructor function which defaults valued parameter to initialize all data members.
• Set and get function for both length and width. The set functions should verify that length and width of each floating point numbers larger than zero and less than 20.0
• A function named findArea, which calculates and returns the area of a rectangle.
• Destructor function to print the message “Rectangle Object Terminated”
Topic archived. No new replies allowed.