java Math-Random

2020-04-10 16:05:10来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

java Math-Random

public class MathDemo {
    public static void main(String[] args) {
        double d = Math.ceil(12.34); //  返回大于等于指定数据的最小整数
        System.out.println(d);

        double d1 = Math.floor(12);//  返回小于等于指定数据的最大整数
        System.out.println(d1);

        long l = Math.round(12.54);//  四舍五入
        System.out.println(l);

        double d2 = Math.pow(2, 3);//  幂运算
        System.out.println(d2);

        for (int i = 0; i < 10; i++) {
            double d3 = Math.random();//  [0,1)随机产生  伪随机数
            System.out.println(d3);
        }

        //随机生成[1,10]
        for (int i = 0; i < 10; i++) {
            int d3 = (int) (Math.random() * 10 + 1);//  [0,1)随机产生  伪随机数
            System.out.println(d3);
        }
        //随机生成[1,10]
        Random r = new Random();
        for (int i = 0; i < 10; i++) {
            int d3 = r.nextInt(10) + 1;
            System.out.println(d3);
        }
    }
}

 


原文链接:https://www.cnblogs.com/hongxiao2020/p/12673656.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Java程序员必看的十大学习网站

下一篇:java Date类