Develop a Java program that computes the area and perimeter…
Develop a Java program that computes the area and perimeter of a rectangle given its length and width. Your program should prompt the user to input the length and width of the rectangle at the outset. Formulas: area = length * width perimeter = 2 * (length + width) Do not forget to add comments. Your program should run and produce results.
Read Details