您好,登錄后才能下訂單哦!
第二個元素開始,先賦值,和前面的元素對比,如果沒有重復的,就把該元素賦值給array1[i],
public class test1125 {
public static void main(String[] args) {
int array1[]=new int[7];
boolean flag=true;
int count=0;
array1[0]=(int) (1+Math.random()(30-1+1));
for(int i=1;i<array1.length;i++){
#給數組當前元素賦值一個隨機數
array1[i]=(int) (1+Math.random()(30-1+1));
while(flag){
#判斷剛賦值的隨機數和前面的元素是否有相等的,如果有就重新賦值,并跳出當前循環
for(int j=0;j<i;j++){
if(array1[i]==array1[j]){
array1[i]=(int) (1+Math.random()*(30-1+1));
break;
}
#引入count變量,是為了如果對比了一遍沒有相同的,當count==i時,說明已經驗證了一遍沒有相同的元素,當前元素賦值是可以的,flag=false,跳出當前while無限循環
count++;
if(count==i){
flag=false;
count=0;
}
}
}
flag=true;
}
for(int i=0;i<array1.length;i++){
System.out.print(array1[i]+"\t");
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。