The program listed belows compiles and runs:
class testing {
public static void main(String args[]) {
int x = 0;
int y = 7;
try {
System.out.println("answer = " + y/x);
}
System.out.println("Exiting");
}
}
The try statement has no catch statement, nor does it have a finally
statement. This should be illegal.
class testing {
public static void main(String args[]) {
int x = 0;
int y = 7;
try {
System.out.println("answer = " + y/x);
}
System.out.println("Exiting");
}
}
The try statement has no catch statement, nor does it have a finally
statement. This should be illegal.