자바 는 무 작위 로 중복 되 지 않 는 숫자 를 생 성 합 니 다.

1594 단어 자바

import java.util.ArrayList;
import java.util.Random;
/**
 * 0-28      9  ,    
 *  :      28    
 *             
 *                  
 *             
 */
public class Randoma {
    public static void main(String[] args) {
        ArrayList aL=new ArrayList();
                for(int digit=0;digit<29;digit++){
                    aL.add(digit);
                    System.out.print(digit+"  ");
                }
                System.out.println();
                for(int result=0;result<9;result++){
                    Random r=new Random();
                      int a=r.nextInt(aL.size());
                     System.out.print(aL.get(a)+","); 
                     aL.remove(a);
       }

    }
}

좋은 웹페이지 즐겨찾기