Circle Area  Example  /*  Calculate Circle Area using Java Example         This Calculate Circle Area using Java Example shows ...

Circle Area Example

23:55 PASSOVE INCOME 0 Comments

 Circle Area  Example


  1.  /*  Calculate Circle Area using Java Example
  2.         This Calculate Circle Area using Java Example shows how to calculate
  3.         area of circle using it's radius.
  4. */
  5. import java.io.BufferedReader;
  6. import java.io.IOException;
  7. import java.io.InputStreamReader;
  8. public class CalculateCircleAreaExample {
  9.         public static void main(String[] args) {
  10.                
  11.                 int radius = 0;
  12.                 System.out.println("Please enter radius of a circle");
  13.                
  14.                 try
  15.                 {
  16.                         //get the radius from console
  17.                         BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  18.                         radius = Integer.parseInt(br.readLine());
  19.                 }
  20.                 //if invalid value was entered
  21.                 catch(NumberFormatException ne)
  22.                 {
  23.                         System.out.println("Invalid radius value" + ne);
  24.                         System.exit(0);
  25.                 }
  26.                 catch(IOException ioe)
  27.                 {
  28.                         System.out.println("IO Error :" + ioe);
  29.                         System.exit(0);
  30.                 }
  31.                
  32.                 /*
  33.                  * Area of a circle is
  34.                  * pi * r * r
  35.                  * where r is a radius of a circle.
  36.                  */
  37.                
  38.                 //NOTE : use Math.PI constant to get value of pi
  39.                 double area = Math.PI * radius * radius;
  40.                
  41.                 System.out.println("Area of a circle is " + area);
  42.         }
  43. }
  44. /*
  45. Output of Calculate Circle Area using Java Example would be
  46. Please enter radius of a circle
  47. 19
  48. Area of a circle is 1134.1149479459152
  49. */

0 comments: