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
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP