close

流程:

電腦隨機取得一組答案

玩家輸入可能的解

判斷是幾A幾B

顯示電腦給的回覆: 幾A幾B

<if A=4結束; else 回到玩家輸入;>


public class c001 {
    public static void main(String[] a)
    {
        String ans="",gus="";int countAB=0,A=0,B=0;
        ans = fun.GetAnswer0();
        /*!!!!*/System.out.println("*Ans="+ans);
        do{
            gus = fun.GetGuess(gus);
            countAB = fun.CountAB(ans, gus);
            A = countAB/10;
            B = countAB%10;
            System.out.println(A+"A"+B+"B");
        }while(A!=4);
        System.out.println("Win!!");
    }
}

 

需要的fun函式均在 FunLibrary(定期更新)

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Kuihao 的頭像
    Kuihao

    溫暖午後的金針田__孕育有趣的創新

    Kuihao 發表在 痞客邦 留言(0) 人氣()