document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. //AreaTester.java   MrG 2011.0920
  2. import java.awt.Rectangle;
  3. public class AreaTester
  4. {
  5.     public static void main(String[] args)
  6.     {
  7.         Rectangle bob = new Rectangle(10,20,50,70);
  8.         double area = bob.getWidth()*bob.getHeight();
  9.         System.out.println("area = " + area);
  10.     }
  11. }
');