求gel-pro analyzer

来源:百度知道 编辑:UC知道 时间:2024/05/23 01:12:28

public class Wb
{
public static void main(String[] args)
{
int[] num = new int[100];
Random rand = new Random();
for(int i=0; i< 100; i++)
{
num[i]=rand.nextInt(10);
}
for(int i=0; i<100; i++)
{
System.out.print(num[i]+" ");
if(((i+1)%10)==0)
{
System.out.print("\n");
}
}
}
}