public class MathDemo {
public static void main(String[] args) {
//Math.sqrt()函数计算x1的平方根
double x1 = 4;
double y1 = Math.sqrt(x1);
//Math.pow(x2, a)计算x2的a次幂
double x2 = 5;
double a = 2.0;
double y2 = Math.pow(x2, a);
//x3 % 2与Math.floorMod(x3, 2)的区别在于x3为负数时,前者得到的为负数,后者为正数
int x3 = -5;
int y3 = x3 % 2;
int y3_f = Math.floorMod(x3, 2);
//Math类中的方法都是使用计算机浮点单元中的例程,使用StrictMath方法可以确保在所有平台上得到相同的结果
double x4 = 4;
double y4 = StrictMath.sqrt(x4);
System.out.println(y1);
System.out.println(y2);
System.out.println(y3 + " " + y3_f);
System.out.println(y4);
}
}
运行结果:
2.0
25.0
-1 1
2.0