728x90
public class Ex24 {//실수형끼리 강제형변환 낮은것에서 높은것으로 바꿀때 근사값으로 처리
public static void main(String[] args){
System.out.println(10.0d == 10.0f);
System.out.println(0.1d == 0.1f);
System.out.println(0.1f);
System.out.println(0.1d);
System.out.println((double)10.0f);
System.out.println((double)0.1f);
System.out.println(0.1d == (double)0.1f);
System.out.println(0.1f == (double)0.1f);
System.out.println((float)0.1d == 0.1f);
}
}
728x90
'JAVA > 예제' 카테고리의 다른 글
[JAVA] ch03-26. 논리 연산자 (0) | 2017.08.21 |
---|---|
[JAVA] ch03-25. 문자 범위 (0) | 2017.08.21 |
[JAVA] ch03-23. 비교 연산자 (0) | 2017.08.21 |
[JAVA] ch03-22. 쉬프트 연산자 (0) | 2017.08.21 |
[JAVA] ch03-21. 나머지값 (0) | 2017.08.21 |
댓글