본문 바로가기

IT, 인터넷/JAVA, 스프링부트

자바 float, double 소수점 계산하기

반응형

자바 소수점 계산은 float은 소수점이 있는 숫자뒤에 f를 붙이면 됩니다.

double은 소수점이 있는 숫자뒤에 d를 붙이면 됩니다.

 

예제)

public class Compare {

 

    public static void main(String[] args) {

    

        float aa = 10.5f; // float 은 뒤에 f를 붙이면 소스점 까지 나옵니다

        double bb = 11.2d; // double은 d를 붙이면 됩니다

        

        System.out.println("aa : " + aa);

        System.out.println("bb : " + bb);

        

        aa = 10 + 11.5f; // 소스점이 있는 값에 f를 붙이면 됩니다

        

        System.out.println("aa : " + aa);

        

        bb = 11.5d + 12.3d; // 소스점이 있는 값에 d를 붙이면 됩니다

        

        System.out.println("bb : " + bb);

    }

}

 

결과)

반응형