Try this, it should work
By: a guest | Mar 20th, 2010 | Syntax:
Java | Size: 0.17 KB | Hits: 99 | Expires: Never
import java.awt.Rectangle;
public class CreateRectangle {
public static void main(String[] args) {
System.out.println((new Rectangle(75, 75, 50, 50)).getWidth());
}
}