Write a class Rectangle with two private instance variables width and height (double), a constructor taking both, accessors getWidth() and getHeight(), a mutator setWidth(double) that ignores values <= 0, and two methods area() and perimeter().
Write a separate class RectangleApp whose main reads width and height from the keyboard, creates one Rectangle and prints:
Area: 12.00
Perimeter: 14.00