Question: Write a code for task 2 at compiler and also show the output . Task # 02. Create a class Rectangle keeping in mind that

Write a code for task 2 at compiler and also show the output .

Task # 02. Create a class Rectangle keeping in mind that rectangle 

Task # 02. Create a class Rectangle keeping in mind that rectangle have length and width. One should be able to calculate the perimeter () and the area () of the rectangle, can set a value to length and width and retrieve the value of Length & width. Where 0 < length < 21 0 < width < 21 Area of Rectangle=length*width; Perimeter of Rectangle = (length + width) *2; TEST PLANS Commands Rectangle r; r.set (2); r.getLength (); r.set (50); r.getLength (); Output Rectangle f=r; f.set (-20); f.getLength ();

Step by Step Solution

3.42 Rating (152 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

include using namespace std class Rectangle create class called Rectangl... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!