Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.applet.*;
- import java.awt.*;
- public class DrawPolygonExample extends Applet
- {
- public void paint (Graphics g)
- {
- int[] x = new int[]{20,70,120,90,50};
- int[] y = new int[]{70,20,70,120,120};
- int n = 5;
- g.drawPolygon(x, y, n);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment