[ if ] -조건문은 if로 시작한다-조건문에서는 if절의 값이 true일때, then절이 실행된다-if절이 false일때는 then절이 실행되지 않는다if( // if절 ){ // then절}if( true ){ System.out.println("result : true");}if( false ){ System.out.println("result : false");}if( true ){ System.out.println(1);}if( false ){ System.out.println(2);}System.out.println(3); 결과 : result : true 1 3 [ else ] if-else절은if절의 값이 true일때 then절이 실행되고..