Question: 1. Create a class called Rectangle that has integer data members named length and width. Your class should have a default constructor (no arg constructor)
1. Create a class called Rectangle that has integer data members named length and width. Your class should have a default constructor (no arg constructor) Rectangle0 that initializes the two instance variables of the object Rect1. The second overloading constructor should initializes the value of the second object Rect2. The class should have a member function named GetWidth0 and GetLength0 that display rectangle's length and width. OUTPUT: Rectl width: 5 Rectl length: 10 Enter a width : 20 Enter a length: 50 Rect2 width : 20 Rect2 length: 50 Write program in JAVA CLASS WORK: 1. Create a class called Rectangle that has integer data members named - length and width. Your class should have a default constructor (no arg constructor) Rectangle0 that initializes the two instance variables of the object Rect1. The second overloading constructor should initializes the value of the second object Rect2. The class should have a member function named GetWidth0 and GetLength0 that display rectangle's length and width OUTPUT: Rectl width: 5 Rectl length: 10 Enter a width : 20 Enter a length: 50 Rect2 width: 20 Rect2 length: 50 Write program in JAVA
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
