14 lines
319 B
Java
14 lines
319 B
Java
package lr13.task_1;
|
|
|
|
public class e5 {
|
|
public static void main(String[] args) {
|
|
try {
|
|
System.out.println("0");
|
|
throw new RuntimeException("ошибка");
|
|
} catch (RuntimeException e) {
|
|
System.out.println("1");
|
|
}
|
|
System.out.println("2");
|
|
}
|
|
}
|