public class F02 {//보조 제어문 continue
  public static void main(String[] args){
    int n;
    for(n=1; n<=10; n++){
      if(n%3==0)
        continue; //3의 배수일때 밑에 문장을 skip함
      System.out.print(" " +n);
    }
    System.out.println();
  }
}
1 2 4 5 7 8 10


'Java > 조건문&반복문' 카테고리의 다른 글

break label문  (0) 2012.04.10
break 문  (0) 2012.04.10
do while  (0) 2012.04.10
while문  (0) 2012.04.10
for 문  (0) 2012.04.09

+ Recent posts