Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.applet.*;
- import java.awt.*;
- public class Smiley extends Applet
- {
- public void paint(Graphics g)
- {
- g.drawOval(80, 70, 150, 150);
- g.setColor(Color.BLACK);
- g.fillOval(120, 120, 15, 15);
- g.fillOval(170, 120, 15, 15);
- g.drawArc(130, 180, 50, 20, 180, 180);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment