Java程序查找圆的区域

圆的面积是其半径的平方与PI值的乘积,因此,要计算矩形的面积

  • 获取圆的半径。

  • 计算半径的平方。

  • 计算PI值与半径平方值的乘积。

  • 打印结果。

示例

import java.util.Scanner;

public class AreaOfCircle {

   public static void main(String args[]){

      int radius;

      double area;

      Scanner sc = new Scanner(System.in);

      System.out.println("Enter the radius of the circle ::");

      radius = sc.nextInt();

      area = (radius*radius)*Math.PI;

      System.out.println("Area of the circle is ::"+area);

   }

}

输出结果

Enter the radius of the circle ::

55

Area of the circle is ::9503.317777109125

以上是 Java程序查找圆的区域 的全部内容, 来源链接: utcz.com/z/322387.html

回到顶部