What happens after launching the code?
public class DivisionByZero {
public static void main(String[] args) {
int a = 42;
int b = 0;
System.out.println(a / b);
}
}What happens after launching the code?
public class DivisionByZero {
public static void main(String[] args) {
int a = 42;
int b = 0;
System.out.println(a / b);
}
}Create a free account to access the full topic