标签: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 }
标签:class 整数 port exti imp copy color public arrays
原文地址:https://www.cnblogs.com/key2/p/11461279.html