import java.util.Random;
public class demo02 {
public static void main(String[] args) {
Random rand = new Random(); //声明一个Random量
int[] a = null;// 声明一个整数数组
a = new int [rand.nextInt(10)]; //a的元素个数是(0~9)的随机数
System.out.println("数组的长度为"+a.length);//打印数组的长度
for(int i=0;i<a.length;i++){ //for循环
a[i] = rand.nextInt(100); //返回一个0~99的随机数
System.out.println("a["+i+"]="+ a[i]);
}
}
}
|
|