반응형
-
자바 로또 프로그램 만들기
자바 배열을 이용하여 아래와 같이 간단한 로또 프로그램을 제작할 수 있습니다.
package date20200317;
public class Array_lotto {
public static void main(String[] args) {
int lotto[] = new int [6];
// 번호 생성
for(int i=0; i<6; i++) {
lotto[i] = (int)(Math.random() * 45) + 1;
// 중복 번호 제거
for(int j=0; j<i; j++) {
if(lotto[i] == lotto[j]) {
i--;
break;
}
}
}
System.out.print("로또 번호: ");
// 번호 출력
for(int i=0; i<6; i++) {
System.out.print(lotto[i] + " ");
}
}
}
// 출력 결과 : "로또 번호: 1 19 17 38 33 31"
반응형
'Programming > JAVA' 카테고리의 다른 글
[JAVA] 자바 int a = 011 -> 9가 나오는 이유 ( what is "int a = 011" and not 9 why, The literal 09 of type int is out of range ) (0) | 2022.03.16 |
---|---|
[JAVA] 자바 charAt()의 문자('1'~'9')를 정수형과 비교(if) 방법 (0) | 2022.03.16 |
[JAVA] 윈도우에서 이클립스 삭제하는 방법 (eclipse uninstall) (0) | 2022.02.17 |
[JAVA] 자바 do while 반복문 (1) | 2020.03.17 |
[JAVA] 자바 구구단 출력 (2단~9단) (0) | 2020.03.16 |