Get Instant Help From 5000+ Experts For
Get Instant Help From 5000+ Experts For
  

Java Example to find the area of a circle

By HWA | Publish On: September 2, 2011 | Posted In:

Java Programming Example

The Java programming example is to find the area of a circle

Calculate Circle Area using Java Example

This Calculate Circle Area using Java Example shows how to calculate area of circle using it’s radius.

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(new InputStreamReader(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

* where r is a radius of a circle.

*/

//NOTE : use Math.PI constant to get value of pi

double area = Math.PI * radius * radius;

System.out.println(“Area of a circle is ” + area);

}

}

/*

Output of Calculate Circle Area using Java Example would be

Please enter radius of a circle

19

Area of a circle is 1134.1149479459152

*/

For more details you can visit our websites at https://www.helpwithassignment.com/programing-assignment-help and http://www.helpwiththesis.com

Book Your Assignment

Drop files here or click to upload.
Or click here to upload

Recent Posts

200+ Exclusive Legal Thesis Topics For 2024

Read More

How To Write Methodology In Thesis?

Read More

Boost Your Thesis Writing: 11 Proven Tips with Statement Examples!

Read More

The Ultimate Guide to Crafting a Killer Thesis Statement

Read More

6 Essential Steps To Kickstart Your Thesis Writing Process

Read More

Get assignment help from subject matter experts!

4.7/5 rating | 10,000+ happy students | Great tutors 24/7