Java 动态数组
发布网友
发布时间:2022-04-24 13:39
我来回答
共1个回答
热心网友
时间:2023-10-14 19:06
package e.xmut.t1207;
import java.util.ArrayList;
import java.util.Scanner;
public class Test1209
{
/**
* @param args
*/
public static void main(String[] args)
{
// TODO Auto-generated method stub
ArrayList<Integer> al = new ArrayList<Integer>();
System.out.println("请输入动态数组的数字个数:");
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
System.out.println("请输入动态数组的数字的最大值:");
int z = sc.nextInt();
for(int i = 0 ; i < n ; i++)
{
al.add((int) (Math.random()*z));
}
System.out.println(al);
}
}
OK ,JDK是1.6肯定可以运行,如果是1.5的话,好像没有基本数据类型的装箱拆箱就是了,不需要注释吧
我以为你的不确定是根据情况改变的,所以让你自己输入个数了,你说具体点,你的意思是输入的个数也用随机产生 ?