Calculate Circle Area Using Java Example: Home Fundamentals Common Java - Lang File Io Collections Applets & Awt Misc Swing
Calculate Circle Area Using Java Example: Home Fundamentals Common Java - Lang File Io Collections Applets & Awt Misc Swing
FUNDAMENTALS
COMMON
JAVA.LANG
FILE IO
COLLECTIONS
APPLETS & AWT
MISC
SWING
Home Java Language Fundamentals Basic Java Examples Calculate Circle Area using Java
Example
/*
*/
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class CalculateCircleAreaExample {
public static void main(String[] args) {
int radius = 0;
System.out.println("Please enter radius of a circle");
try
{
//get the radius from console
BufferedReader br = new BufferedReader(newInputStreamReader(System.in));
radius = Integer.parseInt(br.readLine());
}
//if invalid value was entered
catch(NumberFormatException ne)
{
System.out.println("Invalid radius value" + ne);
System.exit(0);
}
catch(IOException ioe)
{
System.out.println("IO Error :" + ioe);
System.exit(0);
}
/*
* Area of a circle is
* pi * r * r
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
}
/*
Output of Calculate Circle Area using Java Example would be
Please enter radius of a circle
19
Area of a circle is 1134.1149479459152
*/
145
Advertisement:
Receive Latest Java examples in your email:
Advertisements
Advertise Here
Advertisement
Online Shopping - Flipkart
Download FREE Books
ORACLE MAGAZINE
ASP.NET EBOOK
JAVASCRIPT ANTHOLOGY
SIMPLY SQL