Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.applet.*;
- import java.awt.*;
- public class DrawRectangleExample extends Applet
- {
- public void paint (Graphics g)
- {
- int x = 10;
- int y = 20;
- int w = 100;
- int h = 50;
- g.drawRect(x, y, w, h);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment