반응형
System.out.println(a);                              
// 결과 : 0.987654321

System.out.println(Math.ceil(a * 100) / 100.0);     
// 결과 : 0.99

System.out.println(Math.round(a * 100) / 100.0);    
// 결과 : 0.

System.out.println(Math.floor(a * 100) / 100.0);    
// 결과 : 0.98

System.out.println(String.format("%.3f", a));       
// 결과 : 0.988

 

반응형

'Java > 예제코드' 카테고리의 다른 글

[Spring] JSP 설정  (0) 2021.03.06
[Spring] 파일 업/다운로드 예제 코드  (0) 2021.02.20

+ Recent posts