• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Problem in For Loop

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Consider the following code:

for (int i = 0; i < 2; i++) {
for (int j = 0; j < 3; j++) {
if(i==j) {
continue;
}
System.out.println(" i = " + i + " j = " + j);
}
}
Which lines would be part of output?
A. i = 0 j = 0
B. i = 0 j = 1
C. i = 0 j = 2
D. i = 1 j = 0
E. i = 1 j = 1
F. i = 1 j = 2
The answer given is B, C, D, F. Can anyone explain how continue statement executes?
Thanks
Kaveri
 
Ranch Hand
Posts: 133
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
continue will actually stop the current turn of loop and start the next turn of the enclosing loop.
Therefore, when you have the same value of J and i in choices A and E, the println line is not executed, but jump to the next turn of loop.
Hope this helps.
 
reply
    Bookmark Topic Watch Topic
  • New Topic