What is the result of the compilation and execution of the following code with the parameters a = 0, b = 3?
public void divide(int a, int b) {
try {
int c = a / b;
} catch (Exception e) {
System.out.print("Exception ");
} finally {
System.out.println("Finally");
}
}
Войдите чтобы поставить Нравится
Войдите чтобы прокомментировать