일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Validations
- 전자정부
- angular2
- Random
- 추상클래스
- 이클립스
- jquery
- 형변환
- 25가지 효율적인 sql작성법
- 상속
- 다형성
- 스프링
- 가변인자
- Full text
- 야구게임
- 페이징
- full text indexing
- 전체텍스트
- 자바 야구게임
- 다운캐스팅
- 상속예제
- 단축키
- Login with OAuth Authentication
- IBatis procedure
- while
- 전체
- 자바
- 업캐스팅
- 로또
Archives
- Today
- Total
nalaolla
로또번호 생성기 - while문 사용 본문
728x90
반응형
- import java.util.Random;
- public class Lotto_while {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- int[] lot = new int[7];
- Random rdm = new Random();
- for (int i = 0; i < lot.length; i++) {
- int rdm_num = rdm.nextInt(45) + 1;
- lot[i] = rdm_num;
- boolean exist = true;
- wh: while (exist) {
- for (int j = 0; j < i; j++) {
- if (lot[j] == rdm_num) {
- exist = false;
- System.out.println("중복에 의한 회귀" + rdm_num);
- --i;
- break wh;
- }
- }
- break;
- }
- }
- System.out.println("당첨번호 : ");
- for (int i = 0; i < lot.length - 1; i++) {
- System.out.print(lot[i] + " ");
- }
- System.out.println();
- System.out.println("보너스번호 : " + lot[6]);
- }
- }
728x90
반응형
'JAVA' 카테고리의 다른 글
로또번호 생성기 - for문사용 (0) | 2015.11.30 |
---|