/*

  A program that practices some calculations with Rectangle objects.
  CSC120A - Berry College - Fall 2006
*/

import java.awt.Rectangle;

public class RectangleMid {
  
  public static void main( String[] args ) {
    // create two Rectangle objects 
    
    // create a third Rectangle object by computing the:
    // - top-left corner halfway between top-left corners of original two
    // - width and height the average of the original two

    // print out the state of all three objects
    
  } // end main method
  
} // end class
