java用Random类、Math类产生一组10~50之间随机数

Math类下的random方法产生一个[0,1)的double浮点数; 
Random类的nextInt(n)方法产生一个[0,n)的整数;

代码如下:

import java.util.*;
public class RandomTest{
    public static void main(String[] args){
        int ARRAYLENGTH = 10;
        int a[] = new int[ARRAYLENGTH];
        int b[] = new int[ARRAYLENGTH];
        Random ran = new Random();
        for(int i = 0; i < a.length; i++){
            //Random类nextInt()方法产生随机数
            a[i] = ran.nextInt(40) + 10;
            //Math类random()方法产生随机数
            b[i] = (int)(Math.random()*40) + 10;
        }
        System.out.println("数组a为:" + Arrays.toString(a));
        System.out.println("数组b为:" + Arrays.toString(b));
    }

}

输入为:

数组a为:[22, 17, 15, 42, 46, 27, 43, 33, 19, 37]
数组b为:[15, 38, 21, 41, 43, 42, 45, 31, 34, 34]

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值