- import java.untl.Scanner;
- public class Ch24 {
- public static void main(String[] args) throw MyException
- java.util.Scanner s=new Scanner(System.in);
- {
- float x,y;
- System.out.print("輸入分子");
- x=s.nextFloat();
- System.out.print("輸入分母");
- y=s.nextFloat();
- if(y==0)
- throw new MyException("分母不可為零");
- System.out.println(x+"/"+y+'='+(x/y));
- }
- }
- class MyException(String str)
- {
- super(str);
- }
- }
- }
複製代碼 |