相关文章推荐
宽容的自行车  ·  fp = ...·  4 月前    · 
纯真的红酒  ·  validation不生效 - CSDN文库·  5 月前    · 
很酷的钢笔  ·  .NET CORE 依赖注入 ...·  9 月前    · 

java中π用Math.PI表示,圆周率常量π被定义在java.lang.Math类中。输出:3.141592653589793

代码如下:

PI (π)的源码如下:

/**

* The {@code double} value that is closer than any other to

* <i>pi</i>, the ratio of the circumference of a circle to its

* diameter.

*/

public static final double PI = 3.14159265358979323846;

扩展资料:

Java Math 类包含了用于执行基本数学运算的属性和方法,如初等指数、对数、平方根和三角函数。

Math 的方法都被定义为 static 形式,通过 Math 类可以在主函数中直接调用。

比较常见的还有一个底数e,在java Math中表示如下:

public static final double E = 2.7182818284590452354;

参考资料:

Orcale官方API接口-Class Math



在java中,圆周率常量π被定义在java.lang.Math类中。

可以使用Math.PI();

这个方法获得π的值:3.141592653589793

拓展资料:

Math.sqrt()//计算平方根

Math.cbrt()//计算立方根

Math.pow(a, b)//计算a的b次方

Math.max( , );//计算最大值

Math.min( , );//计算最小值

System.out.println(Math.sqrt(16));   //4.0

System.out.println(Math.cbrt(8));    //2.0

System.out.println(Math.pow(3,2));    //9.0

System.out.println(Math.max(2.3,4.5));//4.5

System.out.println(Math.min(2.3,4.5));//2.3

参考资料: java-百度百科