What is the result of the following program execution?

public class Bar {
    public static void main(String args[]) {
    label:
        for (int i = 0; i < 5; ++i) {
            for (int j = 0; j < 5; ++j) {
                if (i > 2) break label;
                System.out.print(j);
            }
            System.out.print(" ");
        }
    }
}
Explanation
Break operator with the label allows you to bypass an identified block of code. The program will display a line 01234 01234 01234, and then will quit all cycles and continue the execution.

Слідкуй за CodeGalaxy

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

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