发布网友 发布时间:2022-05-21 10:06
共2个回答
热心网友 时间:2023-10-23 01:07
public static void main(String[] args) {
try {
int month = getInputMonth();
System.out.println("你输入的月份是" + month);
} catch (ArithmeticException ex) {
System.out.println("捕获ArithmeticExceptoion异常");
}
}
private static int getInputMonth() throws ArithmeticException {
Scanner scan = new Scanner(System.in);
if (scan.hasNextInt()) {
int month = scan.nextInt();
if (month >= 1 && month <= 12) {
return month;
}
}
throw new ArithmeticException();
}
关于JAVA有什么不懂的可以随时问我。
热心网友 时间:2023-10-23 01:07
要拜师吗?