Run ❯
Get your
own Java
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
public class Main { public static void main(String[] args) { int x = 10; int y = 0; System.out.println("Before division"); // Debug output int result = x / y; // Crashes System.out.println("Result: " + result); // Never runs } }
Before division
Exception in thread "main" java.lang.ArithmeticException: / by zero
at Main.main(Main.java:8)