Share Pastebin
Guest
Public paste!

Try this, it should work

By: a guest | Mar 20th, 2010 | Syntax: Java | Size: 0.17 KB | Hits: 99 | Expires: Never
This paste has a previous version, view the difference. Copy text to clipboard
  1. import java.awt.Rectangle;
  2. public class CreateRectangle {
  3.         public static void main(String[] args) {
  4.                 System.out.println((new Rectangle(75, 75, 50, 50)).getWidth());
  5.         }
  6. }