Question: In java please. //Given the following class declaration, write a public method named perimeter that returns the perimeter (the total length of all four sides)
In java please. //Given the following class declaration, write a public method named perimeter that returns the perimeter (the total length of all four sides) of the Rectangle. //This method should take no arguments and should return an int. Do not add or change any other code. class Rectangle { private int height; private int width; public int area() { return this.height * this.width; } }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
