Draw a Smiley in Java Applet

Given task is to draw a smiley face in Java Applet.
Approach:
- Create three Ovals, one for the face, two for the eyes.
- Fill eyes oval with black color.
- Create an arc for the smile in the face.
Below is the implementation of the above approach:
Applet Program:
Java
// Java program to Draw a// Smiley using Java Appletimport java.applet.*;import java.awt.*;/*<applet code ="Smiley" width=600 height=600></applet>*/public class Smiley extends Applet { public void paint(Graphics g) { // Oval for face outline g.drawOval(80, 70, 150, 150); // Ovals for eyes // with black color filled g.setColor(Color.BLACK); g.fillOval(120, 120, 15, 15); g.fillOval(170, 120, 15, 15); // Arc for the smile g.drawArc(130, 180, 50, 20, 180, 180); }} |
Output:
Note: To run the applet in command line use the following commands
> javac Smiley.java > appletviewer Smiley.java
You can also refer https://www.zambiatek.com/different-ways-to-run-applet-in-java to run applet program .




