利用throw語法, 自行丟出例外.- import java.util.*;
- public class ch53
- {
- public static void main(String args[])
- {
- for(int i=1; i<=3; i++)
- {
- try
- {
- Scanner s=new Scanner(System.in);
- float a, b;
- System.out.print("請輸入分子: ");
- a=s.nextFloat();
- System.out.print("請輸入分母: ");
- b=s.nextFloat();
- if(b==0)
- throw new ArithmeticException();
- System.out.println(a+"/"+b+"="+(a/b));
- return;
- }
- catch(ArithmeticException e)
- {
- System.out.println("運算錯誤! 分母不可為零!");
- }
- catch(InputMismatchException e)
- {
- System.out.println("格式錯誤! 輸入須為數字!");
- }
- if(i==3)
- System.out.println("錯誤嘗試過多! 程式跳出!");
- System.out.println();
- }
- }
- }
複製代碼 |