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

更新于: 13-Mar-2020

19K+ 浏览次数

启动你的 职业

完成课程以获得认证

开始
广告
© . All rights reserved.