Java Program to calculate Area of Circle

You tin give the axe calculate the surface area of a circle in Java past times only writing a degree as well as a method. All you lot demand to know is the formula to calculate the surface area of circle as well as fox to acquire input from the user inward Java. If you lot know these 2 already than the calculating surface area of a circle is rattling easy. Since every programme must conduct maintain a degree inward Java, nosotros demand to do a class. I conduct maintain created a degree called Circle for our examples purpose. Now, since the execution of Java programme starts from the master copy method, I conduct maintain provided a populace static void main() method inward our program. This unmarried method is plenty to position all the code required for this programme e.g. getting input from the user, calculating surface area as well as displaying surface area of a circle inward the console. But, for meliorate coding sense purpose, we'll only do a method to calculate the surface area of a circle.

It would conduct maintain been meliorate if nosotros would conduct maintain followed object-oriented programming past times its truthful spirit as well as made an instance method inward circle degree called surface area amongst the radius equally an instance variable, but for the sake of simplicity I conduct maintain created a static method as well as I conduct maintain passed radius to it.

I had to brand this method static because you lot cannot telephone telephone a non-static method from a static context inward Java.

In fellowship to bring input I conduct maintain used the Scanner class, fifty-fifty though you lot tin give the axe utilization other ways similar using a Reader or InputStream, but Scanner provides lots of utility method to read whatsoever sort of information e.g. int, float, String etc, it's preferred class to read input from the console. See that article for to a greater extent than details on Scanner degree inward Java.





How to calculate Area of Circle inward Java

Here is our sample Java programme to calculate the surface area of a circle. As I conduct maintain explained, nosotros conduct maintain used a static method to acquire the project done.  You tin give the axe utilization the same technique to calculate the surface area of rectangle or foursquare inward Java, only modify the formula.

in Java past times only writing a degree as well as a method Java Program to calculate Area of Circle
You tin give the axe encounter from to a higher house diagram that how the formula for calculating the surface area of a circle arrives. It's similar converting the circle to a rectangle as well as thence calculating are of a rectangle.  It's the interesting theory for Maths lovers.

For Java developers, I recommend reading Core Java Volume 1 - Fundamentals past times Cay S. Horstmann for learning Java programming from scratch. This mass provides comprehensive silent readable coverage of both Java linguistic communication as well as API. One of the meliorate books on Java as well as the practiced business office is it equally good covers Java SE 8.

in Java past times only writing a degree as well as a method Java Program to calculate Area of Circle



Java Program to discovery surface area of Circle
import java.util.Scanner;  /*  * Java Program to calculate surface area of circle  */ public class Circle {      public static void main(String args[]) {          // creating scanner to conduct maintain radius of circle         Scanner scanner = new Scanner(System.in);         System.out.println("Welcome inward Java programme to calculate surface area of circle");         System.out.println("Formula for calculating surface area of circle is 'PI*R^2' ");          System.err.println("Please motion into radius of circle:");         float radius = scanner.nextFloat();          double surface area = area(radius);          System.out.println("Area of Circle calculate past times Java programme is : "                 + area);          scanner.close();     }      public static double area(float radius) {         double involvement = Math.PI * radius * radius;         return interest;     } }  Output Welcome inward Java programme to calculate surface area of circle Formula for calculating surface area of circle is 'PI*R^2'  Please motion into radius of circle: 2 Area of Circle calculate past times Java programme is : 12.566370614359172


That's all almost how to calculate the surface area of a circle inward Java. In fellowship to write this program, you lot demand to know the formula for calculating circle as well as how to acquire input from the user. Rest of them are pretty basic, nosotros conduct maintain only written a static method thence that nosotros tin give the axe telephone telephone it direct from main() as well as nosotros conduct maintain used familiar System.out.println() method to impress respond inward the console.

Other Java Programs for Practice
  • Write a Java Program to cheque if a position out is a palindrome or not? (solution)
  • Program to cheque if a position out is an Armstrong position out or not? (solution)
  • Write a programme to cheque if a position out is fifty-fifty or strange inward Java? (solution)
  • How to impress Fibonacci serial inward Java using recursion? (solution)
  • How to impress Alphabets inward upper as well as lower instance inward Java? (solution)
  • Write a programme to contrary a String inward Java? (answer)
  • Java Program to calculate Simple Interest? (answer)

Subscribe to receive free email updates:

0 Response to "Java Program to calculate Area of Circle"

Posting Komentar