/*

  A program that constructs a Rectangle object and then computes and 
  prints its area using the getWidth and getHeight methods. (Ex. P2.1)
  CSC120A - Berry College - Fall 2006
*/

// import the Rectangle class from the java.awt package

public class RectangleArea {
  
  public static void main( String[] args ) {
    // Create a Rectangle extending from the point (50,50) to (100,100)
    
    // Get the width of the rectangle and store it in a variable
    // Get the height of the rectangle and store it in a variable
    
    // Compute the area and store it in another variable
    
    // Print out the result

  } // end main method
  
} // end class
