What will be the result of displaying this code?

public class Main {
   static int method() {
    for (int i = 0; i < 5; i++) {
      System.out.println("i = " + i);
      try {
        if (i == 1) {
          throw new Exception();
        }
      } catch (Exception e) {
        System.out.println("Exception!");
        return i;
      } finally {
        System.out.println("Finally block");
      }
    }
    return -1;
  }
  public static void main(String[] args) {
    System.out.println("method() returned " + method());
  }
}

Слідкуй за CodeGalaxy

Мобільний додаток Beta

Get it on Google Play
Зворотній Зв’язок
Продовжуйте вивчати
тести з Java
Cosmo
Зареєструйся Зараз
або Підпишись на майбутні тести