[Java] Array - 중복 제거된 난수 생성하기 feat.로또번호
오늘은 중복 없이 배열에 값을 넣기 위한 방법을 알아볼거다. 배열생성, 정렬, 출력 3가지 기능에 따라 메서드를 생성해보자. Step1 배열 생성하기import java.util.Random;public class Test01 { static int[] getRandomInt() { // getRandomInt() : 한줄씩 랜덤정수를 뽑는다 Random ran = new Random(); int[] arr = new int[6]; int count = 0; while(count Step2 선택정렬static int[] functions(int[] arr) { // 한줄을 선택정렬하는 for(int i = 0; i arr[j]) { // 앞의 값이 더 크면..