Advertisements
Advertisements
Question
Predict the output:
int i, j;
first:
for (i = 0; i < 5; i = i + 2)
{
second:
for (j = 1; j <= 10; j++)
{
System.out.println("i=" + i + "j=" +);
if (j == 2)
break second;
}
}
Answer in Brief
Solution
i = 0, j = 1
i = 0, j = 2
i = 2, j = 1
i = 2, j = 2
i = 4, j = 1
i = 4, j = 2
shaalaa.com
Is there an error in this question or solution?