计算和显示圆面积的Java程序
给定一个圆的半径,编写一个Java程序来计算并显示圆的面积。 (取 ∏=3.142)
例子
Input : radius= 5
Output: Area of circle is : 78.55
Input : radius= 8
Output: Area of circle is : 201.08
众所周知,要计算圆的面积,必须知道圆的半径,所以如果知道圆的半径,那么可以使用以下公式计算圆的面积:
Area = 3.142*(radius)*(radius)
下面是计算圆面积的Java程序:-
Java
// Java program to calculate the area of the
public class GFG {
public static void main(String[] args)
{
int radius;
double pi = 3.142, area;
radius = 5;
// calculating the area of the circle
area = pi * radius * radius;
// printing the area of the circle
System.out.println("Area of circle is :" + area);
}
}
输出
Area of circle is :78.55