Random 大型整数操作类BigInteger 大型浮点数操作类BigDecimal

Posted wuyuwuyueping

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Random 大型整数操作类BigInteger 大型浮点数操作类BigDecimal相关的知识,希望对你有一定的参考价值。

package test;

import java.util.Random;

public class RandomDemo {
    public static void main(String[] args) {
        Random random = new Random();
        //输出5个0~100之间的随机数
        for(int i=0; i<5; i++) {
            System.out.print(random.nextInt(100) + "	");//2    28    14    20    12    
        }
    }

}

 

以上是关于Random 大型整数操作类BigInteger 大型浮点数操作类BigDecimal的主要内容,如果未能解决你的问题,请参考以下文章

Java-数字相关类

JavaSE基础六----<常用类>Math类Random类|System类,Date类Calendar类SimpleDateFormat类,BigInteger类BigDecimal类

Java基础系列9:BigInteger类和BigDecimal类

BigInteger的用法

Java BigInteger类知识点总结

大整数类(模板)