1. Math.PI :表示的是圆周率常量;
2.Math.E :表示的是普通常量(e);
3.abs()方法: 表示取绝对值
eg1: int x = Math.abs(50L); x的值为:50;
eg2: double x = Math.abs(50.0); x的值为:50.0;
4.ceil()方法: 表示返回一个大于等于操作数最近的整数值
eg1: double x = Math.ceil(8.7); x的值为:9.0;
eg2: double x = Math.ceil(-9.5); x的值为:-9.0;
5.floor()方法: 表示返回一个小于等于操作数最近的整数值
eg1: double x = Math.floor(8.7);
x的值为:8.0;
eg2: double x = Math.floor(-9.5);
x的值为:-10.0;
6.max()方法:表示返回两个数字中最大的数
eg1:double x = Math.max(12,13); x的值为:13;
7.min()方法:表示返回两个数字中最小的数
eg1:double x = Math.min(12,13);
x的值为: 12;
8.random()方法:表示去随机数(double 型)
eg1:int x = (int)(Math.random()*10);//表示的是[0,10)范围内的随机数
x的值是[0,10)范围内的随机数;
9.round()方法: 表示四舍五入(double 型)
eg1:int x = (int)Math.round(4.4);
x的值为:4;
eg2:int x = (int)Math.round(-6.5);
x的值为:-6;
10.sin()方法: 表示的正弦函数(double 型)
eg1: double x = Math.sin(Math.toRadians(90)); //表示求90°角的正弦值
x的值为:1.0
11.cos()方法:表示的余弦函数(double 型)
eg1: double x = Math.cos(Math.toRadians(0)); //表示求0°角的余弦值
x的值为:1.0
12.tan()方法:表示的正弦函数(double 型)
eg1: double x = Math.tan(Math.toRadians(45)); //表示求45°角的正弦值
x的值为:0.9999999999999999
13.sqrt()方法:表示求平方根 (double 型)
eg1: double x = Math.sqrt(4.0);
x的值为:2.0;
eg2: double x = Math.sqrt(-4.0);
输出为:NAN;//NAN表示的是不知道值为多少!
14.toDegrees()方法:返回给定弧度的角度值(double 型)
eg1:double x = Math.toDegrees(Math.PI*0.5); x的值为:90.0