반복문 (FOR루프) 에 이름을 붙여서 원하는 루프를 빠져 나오기

By | 1월 1, 2011

* for 문 앞에 이름을 붙여서, 다중 루프일 경우 원하는 루프를 break 하거나 continue 할 수 있다.

  Loop1 : for(int i=2; i<=9; i++){
   
   for(int j=1; j<=9; j++){
    
    if(j==5)
     break Loop1;
     //break;
     //continue Loop1;
     //continue;

    
    System.out.println(i+"*"+j+"="+i*j);

   }//end of for j
   System.out.println();
  
  }//end of Loop1

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments