(The Rectangle class) Following the example of the Circle cl…
(The Rectangle class) Following the example of the Circle class in Section 9.2, design a class named Rectangle to represent a rectangle. The class contains: Two double data fields named width and height. A no-arg constructor that creates a rectangle with the default values 1 and 2 for the width and height, respectively. A constructor that creates a rectangle with the specified width and height. A method named getArea() that returns the area of this rectangle. A method named getPerimeter() that returns the perimeter. Implement the class. Write a main method that creates two Rectangle objects—one with width 4 and height 40 and the other with width 3.5 and height 35.9. Display the width, height, area, and perimeter of each rectangle in this order. For a hint on this program, please see https://liveexample.pearsoncmg.com/javarevel13e.html.
Read Details