JAVA/예제

[JAVA] ch02-06. float와 double

밍글링글링 2017. 8. 21.
728x90
 
public class Ex06 {//float와 double
    public static void main(String[] args){
        float f = 1.2345678901234567890f; // 끝에 f붙어서 float타입으로 적용하길바라는구나.. 4비트초과 반올림처리
        double d = 1.2345678901234567890;//16자리 초과해서 오버플로우됨
        float f2 = 0.100000001f;
        double d2 = 0.100000001;
        double d3 = 0.1000000000000001;
        double d4 = 1.2e10; //10의10승
        
        System.out.println(f);
        System.out.println(d);
        System.out.println(f2);
        System.out.println(d2);
        System.out.println(d3);
        System.out.println(d4);
    }
}

728x90

댓글