Guest User

DrawRectangleExample

a guest
Feb 11th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.23 KB | None | 0 0
  1. import java.applet.*;
  2. import java.awt.*;
  3.  
  4. public class DrawRectangleExample extends Applet
  5. {
  6.     public void paint (Graphics g)
  7.     {
  8.         int x = 10;
  9.         int y = 20;
  10.         int w = 100;
  11.         int h = 50;
  12.         g.drawRect(x, y, w, h);
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment