13黑马币
最佳答案//银行ATM异常
class ATMException extends Exception {
public ATMException() {
super();
}
public ATMException(String message) {
super(message);
}
}
//银行取款机
class ATM {
//取款方法
public static int getMoney(int money) throws ATMException{
if (money>3000) {
throw new ATMException("余款不足,请重新输入!");
} else {
System.out.println("正在出款:"+money);
return money;
} ...
| |
| |