When I run this applet it does not show anything. What is the problem in this code? Did I miss anything? Thanks for your help!
import java.awt.*;
import java.applet.*;
public class Pucca extends Applet {
public void init() {
}
public void paint(Graphics g) {
Color yellow = new Color(255, 255, 51);
g.setColor(yellow);
g.fillRect(500,50,400,400);
Color white = new Color(255,255,255);
g.setColor(white);
g.fillOval(600, 100, 125, 125);
}
}