728x90
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);
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch04-02. IF ~ ELSE 문 (0) | 2017.08.21 |
---|---|
[JAVA] ch04-01. IF문 (0) | 2017.08.21 |
[JAVA] ch03-26. 논리 연산자 (0) | 2017.08.21 |
[JAVA] ch03-25. 문자 범위 (0) | 2017.08.21 |
[JAVA] ch03-24. 실수형 강제형변환 (0) | 2017.08.21 |
댓글