//AnalogClock.java import java.awt.*; import javax.swing.*; public class AnalogClock extends JApplet { int count; public void init() { String input; // input = JOptionPane.showInputDialog( "Enter number of loops" ); // count = Integer.parseInt( input ); } public void paint (Graphics g) { g.setFont(new Font("Monospace",Font.BOLD,22)); int length, x, y; int xc=getWidth()/2; int yc=getHeight()/2; double angle; if (getWidth()