Set 집합의 간단한 응용: 랜덤으로 7개 1-8의 수를 출력하여 Set 집중에 저장

1477 단어 푸딩
import java.util.HashSet;
import java.util.Random;
import java.util.Set;
public class Exercise01 {
    public static void main(String[] args) {
        // 
        Random r = new Random();
        // Set 
        Set set = new HashSet<>();

        while(set.size()!=7){// set size( ) 7 , 
            int a = r.nextInt(8)+1;// 
            set.add(a);// 
        }
        System.out.println(set);
    }

}

좋은 웹페이지 즐겨찾기