java_알파벳 게임

1362 단어 자바게임.
자바 알파벳 맞 추기 게임
알파벳 맞 추기 게임:사용자 가 게임 난이도(5,7,9)를 지정 하고 프로그램 은 무 작위 로 반복 되 지 않 는 알파벳 을 생 성 합 니 다.사용자 가 잘못 알 아 맞 혀 서 사용자 가 맞 는 알파벳 의 수량 과 맞 는 위치 수 를 알려 줍 니 다.
import java.util.Scanner;
public class GuessWord {

	public static void main(String[] args) {
		Scanner scan=new Scanner(System.in);
		int num;
		do{
			System.out.println("     ,           (5、7、9),  “EXIT”  ");
			num=scan.nextInt();
		}while(num!=5&&num!=7&&num!=9);//        
		char[] arr=generate(num);
		//System.out.println(Arrays.toString(arr)); //     
		int [] result;
		do{
			String str=scan.next().toUpperCase();//toUpperCase()           
			if(str.equals("EXIT"))
				break;
			char[] chs=str.toCharArray();//toCharArray()           
			result=check(arr,chs);
			if(result[0]==chs.length){
				System.out.println("      ");
			}else{
				System.out.println("     :"+result[1]+"         :"+result[0]+" ");
			}
			
		}while(result[0]!=num);

		
	}
	//      
	public static char[] generate(int num){
			char[] chs=new char[num];
			char[] word=new char[26];
			for(int i=0;i

좋은 웹페이지 즐겨찾기