运行 ❯
获取
您自己的 Java
服务器
×
更改方向
更改主题,深色/亮色
前往 Spaces
public class Main { static void checkAge(int age) { if (age < 18) { throw new ArithmeticException("Access denied - You must be at least 18 years old."); } else { System.out.println("Access granted - You are old enough!"); } } public static void main(String[] args) { checkAge(20); } }
已准入 - 年龄已达标!