smart bingo game
본 자료는 미리보기를 지원하지 않습니다.
닫기
  • 1
  • 2
  • 3
해당 자료는 1페이지 까지만 미리보기를 제공합니다.
1페이지 이후부터 다운로드 후 확인할 수 있습니다.

소개글

smart bingo game 에 대한 보고서 자료입니다.

목차

java 콘솔

본문내용

import java.util.Scanner;
public class BingoGame {
public static void main(String[] args) {
Scanner s=new Scanner(System.in);

int size;
do{
System.out.println("1. 3x3 / 2. 5x5");
System.out.print("원하는 빙고사이즈를 선택하세요 ");
size=s.nextInt();

if(size==1){
BingoLogic b1=new BingoLogic();
b1.duplication();
}else if(size==2){
BingoLogicExpert b2=new BingoLogicExpert();
b2.duplication();
}else{
System.out.println("잘못선택하셨습니다.");
}
}while(size!=1&&size!=2);


}
}
  • 가격2,500
  • 페이지수3페이지
  • 등록일2012.02.07
  • 저작시기2007.5
  • 파일형식압축파일(zip)
  • 자료번호#727234
본 자료는 최근 2주간 다운받은 회원이 없습니다.
청소해
다운로드 장바구니