Java Program to Calculate the Area of Circle
In this program, we will learn to calculate and display the area of a circle. To calculate the area of the circle we have to use a formula that is: (22*r*r)/7. Here “r” means the radius of the circle.
Algorithm to Calculate the area of the circle
- import java.io.*;
- import java.util.*;
- create class Area
- public static void main(String[] args)
- Scanner ob = new scanner (System.in)’
- double r;
- System.out.print(“Enter radius”);
- r = ob.nextInt();
- double area = (22*r*r)/7.
- System.out.print(” Area of the Circle is: ” + area);
Source Code to Print the area of Circle
import java.io.*;
import java.util.*;
class Area
{
public static void main(String []args)
{
Scanner ob=new Scanner(System.in);
double r;
System.out.println(“enter value r”);
r=ob.nextInt();
double c = (22*r*r)/7;
System.out.println(“area of circle: ” +c);
}
}
Execute Code Here
Recommended Post:
- How to compare dates in java|algorithm with source code
- Java roll dice 10000 times with algorithm and source code
- Write a Java program that displays the number of characters, lines, and words in a text
- Write a Java program that reads a file and displays the file on the screen with a line number before each line
- Write a Java program that reads a file name from the user, then displays information about whether the file exists, readable, writable, type of file, and the length of the file in bytes
- Java program to make frequency count of vowels, consonants, special symbols, digits, words in a given text
- Write a Java program for sorting a given list of names in ascending order
- Write a java program to Checks whether a given string is a palindrome or not
- Write a java program to perform multiplication of two matrices
- write a java program that prints the Fibonacci series for a given number.
- Write a Java program that finds the factorial of a number
- Write a Java program that finds prime numbers between 1 to n
- Write a Java program that prints all real and imaginary solutions to the quadratic equation
- Odd and Even number in java | Algorithm
- Even number in java | algorithm with source code
- Java greater number using a loop
- Java Area of Rectangle
- What is a polygon? | Area of Triangle in java
- To calculate the Area of Circle in the java program
- Java Addition through user input
- Addition program in java with source code
Find the solution to the salesforce Question.