continue loop
hi!!// have a look at the following code.run ti by continuing all the three loops one by one and please post ur reasons ... why is this so?//
class cony
{
public static void main(String srgs[])
{
int m=0;
loop1: for(int i=0;i<10;i )
loop2: for(int j=0;j<10;i )
loop3: for(int k=0;k<10;k )
{
System.out.println( m);
if((k==0))
continue loop3;
}}}