本帖最後由 tonyh 於 2015-1-17 16:27 編輯
對ch34猜數字遊戲的程式碼, 進行例外處理,
使程式執行時, 萬一使用者不小心將0打成o時, 遊戲得以繼續進行.
- import java.io.Console;
- public class ch34
- {
- public static void main(String args[])
- {
- int a=1, b=99, n=0;
- int ans=(int)(Math.random()*99+1); //1~99
- Console c=System.console();
- while(true)
- {
- try
- {
- n++;
- System.out.print("猜一個"+a+"~"+b+"之間的數字: ");
- int guess=Integer.parseInt(c.readLine());
- if(guess>ans)
- {
- System.out.println("猜得太大了!");
- b=guess;
- }else if(guess<ans)
- {
- System.out.println("猜得太小了!");
- a=guess;
- }else
- {
- break;
- }
- }catch(Exception e)
- {
- System.out.println("請輸入數字!");
- }
- }
- System.out.println("恭喜你猜對了!");
- System.out.println("總共猜了"+n+"次!");
- }
- }
複製代碼 |