Что напишет код?
«
public class TryCatchFinally {
public static void main(String[] args) {
for (int i = 0; i < 3; i++) {
System.out.print(i);
try {
if (i < 1) throw new Exception();
return;
} catch (Exception e) {
System.out.print("E");
} finally {
if (i > 0)
continue;
}
}
System.out.print("X");
}
}»
0E12X
Задача
via javasПояснение - цитата из стандарта -
здесь ![](http://utx.ambience.ru/img/_radiant_/java/)
java ![](http://utx.ambience.ru/img/_radiant_/programming/)
programming