Draw an Olympic Symbol in Java Applet
Given task is to draw an Olympic symbol in Java Applet.
Expected Output:
Approach:
Use drawOval() method to draw a circle with x and y coordinates and length and breadth.
Below is the implementation of the above approach:
Applet Program:
// Java program to Draw an Olympic // Symbol using Java Applet import java.awt.*; import java.applet.*; public class Olympics extends Applet { public void paint(Graphics g) { g.setColor(Color.BLUE); g.drawOval( 30 , 30 , 30 , 30 ); g.setColor(Color.YELLOW); g.drawOval( 50 , 45 , 30 , 30 ); g.setColor(Color.BLACK); g.drawOval( 70 , 30 , 30 , 30 ); g.setColor(Color.GREEN); g.drawOval( 90 , 45 , 30 , 30 ); g.setColor(Color.RED); g.drawOval( 110 , 30 , 30 , 30 ); } } |
Output:

Note: To run the applet in command line use the following commands
> javac Olympics.java > appletviewer Olympics.html
Attention reader! Don’t stop learning now. Get hold of all the important Java Foundation and Collections concepts with the Fundamentals of Java and Java Collections Course at a student-friendly price and become industry ready.