03-14.1 삼항 연산자 Def) 조건식 ? 피연산자1 : 피연산자2 => 조건식이 참이면 결과는 피연산자1, 결과는 피연산자2이다. Ex) public class TernaryExam { public static void main(String[] args) { int b1 = ( 5 > 4 ) ? 50 : 40 ; System.out.println(b1); } } Note) b1 = ( 5 > 4 ) ? 50 : 40 는 괄호 안의 식이 참이면 50, 거짓이면 40을 b1에 대입하라는 의미이다. 03-14.2 if문 - 위의 삼항 연산자 대신 if문을 쓸 수 있다. Ex) public class TernaryExam { public static void main(String[] args) { int ..