Question:
I’m using BlueJ (in a slightly outdated version) to make a snowman in Java Applets (cause why not) but I’d like some assistance making it. Could anyone help?
import java.awt.*;
import javax.swing.*;
public class snowman extends JApplet
{
public void paint(Graphics g)
{
g.setColor(Color.gray);
g.fillOval(140,60,60,60);
g.fillOval(120,110,100,100);
g.fillOval(95,160,150,150);
}
}