Java Graphics
Here is a specification for method drawOval, which appears in class Graphics.
// Draw an oval that is bounded by the rectangle with upper-left
// corner (x,y), width w, and height h
public void drawOval(int x, int y, int w, int h)
Fill in the body of the following method. Declare any additional (local) variables that you need.
// Draw a circle, using Graphics g, with center (x,y) and radius r
public void drawCircle(Graphics g, int x, int y, int r)
g.drawOval( ____________, ____________, ____________, ____________);