/********************************************************************* * Author: Eric Heim * Date Created: 7/5/2011 * Course: CS0007 * Description: Shows the use of an instance of the rectangle class *********************************************************************/ public class RectangleDemo { public static void main(String[] args) { Rectangle myRectangle = new Rectangle(); myRectangle.setLength(5.0); myRectangle.setWidth(4.0); System.out.println(myRectangle.getLength()); System.out.println(myRectangle.getWidth()); System.out.println(myRectangle.getPerimeter()); System.out.println(myRectangle.getArea()); } }