找到圆的面积的 Java 程序


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

  • 获得圆的半径。
  • 计算半径的平方。
  • 计算圆周率值和半径的平方值的乘积。
  • 打印结果。

示例

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

更新于: 2020 年 3 月 13 日

19K+ 浏览量

开始你的 职业生涯

完成课程获取认证

开始
广告
© . All rights reserved.