Java八大常用类(六) Math类和Random类

Math类
package oop2.Mathh;

public class MathA {

public static void main(String[] args) {
    System.out.println(Math.PI);

    System.out.println(Math.E);
    System.out.println(Math.round(3.156));    //四舍五入
    System.out.println(Math.ceil(3.16));   //向上取整
    System.out.println(Math.floor(3.9));   //向下取整
    System.out.println(Math.random());   //产生随机数[0 , 1)

    System.out.println(Math.sqrt(64));  //开平方
    System.out.println(Math.pow(2,3));    //  2的3次幂
    System.out.println(Math.abs(-5));     // 去绝对值
    System.out.println(Math.max(2,9));    //比较两个数的大小
    System.out.println(Math.min(3,2));

}

}
Random类 随机数
package oop2.Mathh;

import java.util.Random;

public class RandomA {

public static void main(String[] args) {
    Random random = new Random();                //   Random()括号里有数字,则为种子,之后产生的数叫伪随机数

    //产生0-10内随机整数
    int i = random.nextInt(10);                //如过是   nextInt()  ,括号没有数,将会产生int类型范围内的数
                                                        //其他类型就是nextXXXXX类型

    System.out.println(i);

    // 产生4位随机数
    int s = random.nextInt(9000)+1000;
    System.out.println(s);

}

}

原创文章:https://www.qqhhs.com,作者:起航®,如若转载,请注明出处:https://www.qqhhs.com/55.html

版权声明:本站提供的一切软件、教程和内容信息仅限用于学习和研究目的,请于下载的24小时内删除;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络收集整理,如果您喜欢该程序和内容,请支持正版,购买注册,得到更好的正版服务。我们非常重视版权问题,如有侵权请邮件与我们联系处理。敬请谅解!

Like (0)
Donate 受君之赠,荣幸之至 受君之赠,荣幸之至 受君之赠,荣幸之至 受君之赠,荣幸之至
Previous 2023年1月10日
Next 2023年1月10日

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

联系我们

qhhl

QQ-175142992024110802215838同号

SHARE
TOP
“人们不愿意相信,一个土匪的名字叫牧之”