码迷,mamicode.com
首页 > 编程语言 > 详细

java基础 利用random()创建随机数

时间:2019-09-04 21:50:02      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:class   整数   port   exti   imp   copy   color   public   arrays   

 1 import java.util.Arrays;
 2 import java.util.Random;
 3 
 4 public class copyRandom {
 5     public static void main(String[] args) {
 6         int[] arr=new int[100];
 7         //设置随机的初始值
 8         int r=new Random().nextInt(100);//0~100整数
 9         //随机返回一个数
10         System.out.println(r);
11         
12         //通过循环创建出100个随机数
13         for(int i=0;i<arr.length;i++) {
14             arr[i]=new Random().nextInt(100);
15         }
16         System.out.println(Arrays.toString(arr));
17     }
18 }

 

java基础 利用random()创建随机数

标签:class   整数   port   exti   imp   copy   color   public   arrays   

原文地址:https://www.cnblogs.com/key2/p/11461279.html

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