Java中的Math类

2021/7/25 17:10:01

本文主要是介绍Java中的Math类,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

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


这篇关于Java中的Math类的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程