continue 문은 for 루프 , while 루프 또는 do-while 루프 의 현재 반복을 건너 뜁니다 .

continue문은 반복문(for, while, do-while)내에서 사용할 수 있습니다. 

continue 문 다음에 나오는 문을 건너 뛰고 반복을 계속합니다 .

public static void main( String [] args ) {

 

       forint i = 0 ; i<10 ; i++ )

       {

 

             if( i % 2 == 0)

             {             

                 continue;      //if i is even, skip the print statement

             }

 

             System.out.println("The number is " + i );

       }

}

 

Output:

 

The number is 1

The number is 3

The number is 5

The number is 7

The number is 9 


블로그 이미지

귀염둥이채원

,