Problem #880 C++ using OBJECT ORIENTED PROGRAMMING

Write a C++ program to create a class called Rectangle with private instance variables length and width. Provide public getter and setter methods to access and modify these variables.

Your Solution