\
2021.03.29 - [JAVA/JAVA(자바)설치 및 툴 이용(ECLIPSE)] - [JAVA] 자바 설치 및 환경 하기 JDK 1.8 버전
개발 환경
Window 10
JDK 1.8
이클립스 2020_03 버전
로또 7개 숫자를 hashSet으로 만들어내는 코드
import java.util.*;
class HashSetLotto{
public static void main(String[] args) {
Set set = new TreeSet();
for (int i = 0; set.size() < 6 ; i++) {
int num = (int)(Math.random()*45) + 1;
set.add(new Integer(num));
}
// List list = new LinkedList(set); // LinkedList(Collection c)
// Collections.sort(list); // Collections.sort(List list)
System.out.println(set);
}
}
[2, 23, 25, 30, 33, 39]