Advertisement
kkricardokaka95

Concentric

Sep 30th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. import java.awt.*;
  2. import java.applet.*;
  3.  
  4. public class smileyface extends Applet
  5. {
  6.     public void paint(Graphics g)
  7.     {
  8.         int i,j;       
  9.         for(i=500,j=50;i>=50;i-=50,j+=25)
  10.             g.drawOval(j,j,i,i);
  11.  
  12.     }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement