This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import acm.graphics.*; | |
import acm.program.*; | |
import java.awt.*; | |
public class Target2 extends GraphicsProgram { | |
private static final int MAX_CIRCLES=3; | |
private static final int PIXELS_PER_INCH=72; | |
public void run() { | |
/* Set Initial Radius */ | |
double radius=1; |