본문 바로가기

Programming

Java parse double dataType after dot, 자바 소수점 이하 출력개수 조절

자바 소수점 이하 출력개수 조절


Java parse double dataType after dot




자바의 기본 자료형 double

Double class 의 parseDouble 메소드와 String class 의 format 메소드를 사용한다.


primitive data type "double" in java.

Use Double class to use parseDouble method, and String class to use format method.



- 문자로 나오는 소수점을 원하는 만큼 잘라내고 파싱해서 double 값을 얻어낸다.


- Get double value after parsing from string format double which you wanna get




e.g. 


public static void main(String args[]) {


//double testDouble = 0.124213;


System.out.print(Double.parseDouble(String.format("%.4f", 0.474783287247)));


}


Console 결과 Result


0.4748 (round after 4 digit, 4자리 이후 반올림)




Something else...



2018/11/17 - [Programming/C++] - C++ How to convert string to integer in C++, string 에서 int 변환하는 방법, Easiest way to convert string to int.

2018/11/17 - [Programming/C++] - C++ How to convert integer to string in C++, int 에서 string 변환하는 방법, Easiest way to convert int to string.



2018/10/11 - [Computer general/Windows] - Windows 10에서 부팅시 계정 암호를 입력하지 않는 방법(How to Skip the Windows 10 Login Screen and Login)

2018/10/10 - [Computer general/Windows] - GPU Graphic card performance benchmark 그래픽카드 퍼포먼스 벤치마크 (NVidia etc..)



2018/10/08 - [Algorithm/Code Signal (Code Fights)] - Aracade Intro #12 SortByHeight

2018/10/06 - [Algorithm/Code Signal (Code Fights)] - Aracade Intro #11 IsLucky

2018/10/03 - [Algorithm/Code Signal (Code Fights)] - Aracade Intro #10 CommonCharacterCount



2018/09/27 - [Programming/Java] - Java 자바 Math class - round/ceil/floor/abs (반올림/올림/내림/절대값)