조건문if / switch 단일 구문과 삼항식 단일구문if(rain) result="study java";else result="그럼에도 불구하고 study";else 구문은 생략 가능하고 , 필요시에 사용-else의 구문은 가장가까운 if 절과 매치되고 ,if(score > 80 ) if(score > 90 ) System.out.println("90점 초과"); else System.out.println("80점 초과 90점 이하");만약 다른 if 절과 else 절을 매치 시키려면 중괄호를 사용하여 블럭으로 묶는다.if(score > 80 ){ if(score > 90 ) System.out.println("90점 초과");}else System.out.println("80점 미만"); 삼항식..