
// Change program to read in the radius from the keyboard with Scanner


public class ComputeArea
{
   public static void main(String[] args)
   {
      double radius;
      double area;
  

      // (1) Assign a radius
      radius = 20;

      // (2) Compute area
      area = 3.14159 * radius * radius;

      // (3) Print result
      System.out.println(area);
   }                       
} 
