728x90 자바 삼항 연산자1 [JAVA] ch03-27. 삼항 연산자 public class Ex27 { // 삼항 연산자 public static void main(String[] args){ int x = 10; int y = -10; int abcX = (x >= 0) ? x : -x; int abcY = (y >= 0) ? y : -y; System.out.println("x = 10 is, absolute x is " + abcX); System.out.println("y = -10 is, absolute y is "+ abcY); } } JAVA/예제 2017. 8. 21. 이전 1 다음 728x90