JavaStudy/Basic

[Java] 8.반복문

LeeDaniel 2024. 11. 5. 10:11
 [ while ] 
while문의 형식
// 조건이 true이면 실행 영역의 코드를 반복한다
while( 조건 ){
  실행 영역
}
public class WhileDemo {
	
  public static void main(String[] args) {
    while( true ) {
      System.out.println( "while statement is executed when true" );
    }
  }
}
public class WhileDemo {
	
  public static void main(String[] args) {
    
    int i = 0;
    while( i<5 ) {
      System.out.println( "while statement is executed when true " + i );
      i++;
    }
  }
}

[ for ] 
||는 좌우항중에 하나라도 true면 전체가 true가 되는 논리 연산자이다.
or라고 읽는다
for(초기화; 종료조건; 반복실행){
    반복적으로 실행될 구문
}
public class ForDemo {

  public static void main(String[] args) {
		
    for (int i = 0; i < 5; i++) {
      System.out.println("It's a for statement " + i);
    }	
  }
}


[ break ] 
반복문을 중간에 빠져나가기 위해 사용한다
public class ForDemo {

  public static void main(String[] args) {
		
    for (int i = 0; i < 5; i++) {
      if (i == 3){
        break;
      }
      System.out.println("Let's use the break statement " + i);
    }
  }
}

[ 반복문의 중첩 ] 

public class ForDemo {

  public static void main(String[] args) {
		
    for (int i = 2; i < 10; i++) {
      for (int j = 1; j < 10; j++) {
        System.out.println( i + "x" + j + "=" + i*j );
      }
    }	
  }
}

 

 
반응형

'JavaStudy > Basic' 카테고리의 다른 글

[Java] 10.메소드(method)  (0) 2024.11.05
[Java] 9.배열  (0) 2024.11.05
[Java] 7.논리 연산자  (0) 2024.10.22
[Java] 6.조건문  (0) 2024.10.21
[Java] 5.비교연산자  (0) 2024.10.21