본문 바로가기

JAVA/기본다지기

[JAVA] 재미로 만든 로또번호 추첨기

package com.javalesson.test;


import java.util.Random;


public class T00Lotto {

int a, bc, de, f;

public void Random(){

Random random = new Random();

a=random.nextInt(44)+1; //0~44까지 랜덤 +1 = 1~45까지 랜덤

while(true){

b=random.nextInt(44)+1;

if(!= a) break; //중복 배제

}

while(true){

c=random.nextInt(44)+1;

if(!= && != bbreak;//중복 배제

}

while(true){

d=random.nextInt(44)+1;

if(!= && != && != cbreak;//중복 배제

}

while(true){

e=random.nextInt(44)+1;

if(!= && != && != && != dbreak;//중복 배제

}

while(true){

f=random.nextInt(44)+1;

if(!= && != && != && != && != ebreak;//중복 배제

}

System.out.println("이번 주 행운번호");

System.out.print(a+", "+b+", "+c+", "+d+", "+e+", "+f);

}

public static void main(String[] args) {

T00Lotto LT = new T00Lotto();

LT.Random();

}

}


'JAVA > 기본다지기' 카테고리의 다른 글

JAVA 17일차 필기  (1) 2016.08.30
JAVA 16일차 필기  (1) 2016.08.29
JAVA 15일차 필기  (0) 2016.08.26
[JAVA] 간단한 영화관 예약프로그램 예제  (0) 2016.08.25
[JAVA] 가위바위보 게임  (1) 2016.08.25