返回列表 發帖

[作業] 例外處理 (四)

本帖最後由 tonyh 於 2015-1-17 16:27 編輯

對ch34猜數字遊戲的程式碼, 進行例外處理,
使程式執行時, 萬一使用者不小心將0打成o時, 遊戲得以繼續進行.

  1. import java.io.Console;
  2. public class ch34
  3. {
  4.     public static void main(String args[])
  5.     {
  6.          int a=1, b=99, n=0;
  7.          int ans=(int)(Math.random()*99+1);    //1~99
  8.          Console c=System.console();
  9.          while(true)
  10.          {
  11.               try
  12.               {
  13.                   n++;
  14.                   System.out.print("猜一個"+a+"~"+b+"之間的數字: ");
  15.                   int guess=Integer.parseInt(c.readLine());
  16.                   if(guess>ans)
  17.                   {
  18.                       System.out.println("猜得太大了!");
  19.                       b=guess;
  20.                   }else if(guess<ans)
  21.                   {
  22.                       System.out.println("猜得太小了!");
  23.                       a=guess;
  24.                   }else
  25.                   {
  26.                       break;
  27.                   }
  28.               }catch(Exception e)
  29.               {
  30.                   System.out.println("請輸入數字!");
  31.               }
  32.          }
  33.          System.out.println("恭喜你猜對了!");
  34.          System.out.println("總共猜了"+n+"次!");
  35.     }
  36. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表