import java.util.Scanner;
public class LottoGame {
final static int size = 6;
static Scanner sc;
public static void main(String[] args) {
int insertNum[] = new int[size];
int lotto[] = new int[size];
boolean resultSort = false;
int compareNum = 0;
lotto lg = new lotto();
do{
int cnt = 0;
while(cnt < 6) {
System.out.println((cnt+1)+"번 째 수 입력(1-45) : ");
sc = new Scanner(System.in);
insertNum[cnt] = sc.nextInt();
if(insertNum[cnt]<1 || insertNum[cnt]>45) {
System.out.println("1부터 45까지만 입력해주세요.");
cnt--;
}
cnt++;
}
resultSort = lg.sort(insertNum);
cnt = 0;
if(resultSort==true){
System.out.println("중복된 값 입력! 처음부터 다시 입력");
}
}while(resultSort);
do{
resultSort = false;
for(int i=0; i<lotto.length; i++)
lotto[i] = (int)(Math.random()*45)+1;
resultSort = lg.sort(lotto);
}while(resultSort);
compareNum = lg.compare(lotto, insertNum);
System.out.println("\n 맞은 개수 = " + compareNum);
}
}
class lotto {
int compare(int arr[], int inarr[]){
int count = 0;
for(int i=0; i<arr.length; i++) {
for(int j=0; j<inarr.length; j++) {
if(arr[i] == inarr[j])
count++;
}
}return count;
}
public static boolean sort(int arr[]) {
int temp=0;
for(int i=0; i<arr.length-1; i++) {
for(int j=i+1; j<arr.length; j++){
if(arr[i] > arr[j]) {
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
for(int m=0; m<arr.length; m++) {
if(i!=m && arr[i]==arr[m])
return true;
}
}
}
return false;
}
}
'IT > JAVA' 카테고리의 다른 글
[JAVA/자바] 방향키를 누를때마다 이미지가 10픽셀씩 이동되게 하는 프로그램 예제(KeyEvent/keyPressed) (0) | 2017.06.05 |
---|---|
[JAVA/자바] 오목(Omok) 게임 예제 - 컴퓨터(Computer) Ai 판단 (0) | 2017.05.30 |
[JAVA/자바] 스캐너를 활용한 상속(extends) 값 예제 - 나이/이름/키/몸무게/체중 판단 (0) | 2017.05.30 |
[JAVA/자바] 보더레이아웃(BorderLayout) 예제 (0) | 2017.05.30 |
[JAVA/자바] 그리드레이아웃(GridLayout) 예제 (0) | 2017.05.30 |