码迷,mamicode.com
首页 > 其他好文 > 详细

Math类小结

时间:2017-10-09 17:36:23      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:todo   rate   pack   generate   nbsp   demo   com   math   span   

package com.swift;

public class MathDemo {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        //数学类的小总结 Math
        System.out.println(Math.pow(4, 3));//幂运算 64
        System.out.println(Math.pow(4, 0.5));//4的开方
        System.out.println(Math.pow(2, -2));//0.25 2的2次幂分之1
        System.out.println(Math.sqrt(16));//0.25 2的2次幂分之1  square root sqrt
        System.out.println(Math.sqrt(25));//0.25 2的2次幂分之1
        System.out.println(Math.abs(-3));//0.25 2的2次幂分之1 absolute
        System.out.println(Math.ceil(2.6));//0.25 2的2次幂分之1 absolute
        System.out.println(Math.ceil(2.1));//0.25 2的2次幂分之1 absolute
        System.out.println(Math.floor(2.1));//0.25 2的2次幂分之1 absolute
        System.out.println(Math.rint(2.1));//0.25 2的2次幂分之1 absolute 返回偶数
        System.out.println(Math.round(2.1));//正数四舍五入,负数五舍六入
    }

}

 

Math类小结

标签:todo   rate   pack   generate   nbsp   demo   com   math   span   

原文地址:http://www.cnblogs.com/qingyundian/p/7641840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!