logo

Crowdly

What is the output of the following code snippet? for (int i = 1; i <= 3; i++) {...

✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.

What is the output of the following code snippet?

for (int i = 1; i <= 3; i++) {

    for (int j = 1; j <= 3; j++) {

        if (i == j)

            continue;

        System.out.print(i + j + " ");

    }

}

More questions like this

Want instant access to all verified answers on my.uopeople.edu?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!