//cd c:\HPBasic\Toppage-sample3\Applet //javac Circle.java //set CLASSPATH=. //appletviewer Circle.java //appletviewer Circle.html import java.applet.Applet; import java.awt.Graphics; /* */ public class Circle extends Applet { public void paint(Graphics g) { int x0 = 50; int y0 = 75; int width = 200; int height = 150; int x1 = x0 + width; int y1 = y0 + height; g.drawRect(x0, y0,width, height); g.drawLine(x0, y0,x1, y1); g.drawOval(x0, y0,width, height);//ellipse g.drawOval(25,25,250,250); //circle } }