问题怎么提?

2024-12-15 20:20:15
推荐回答(3个)
回答1:

3dmax我渲染出来一片绿色是什么情况

回答2:

你想怎么提就怎么提

回答3:

public class TestRandom{ public static void main(String[] args){ Random a=new Random(); int s[]=new int[5]; for (int i = 0; i < s.length;) { s[i]=a.nextInt(10); if(CheckRandom(s,s[i],i)){ System.out.println("第"+(i+1)+"个随机数是:"+s[i]); i++; } } } public static boolean CheckRandom(int c[],int t,int l){//检查生成的随机数是否存在与数组中 for (int i = 0; i < c.length; i++) { if(c[i]==t&&l!=i){ return false; } } return true; } }