문자열 형식을 사용하여 부동 소수점 n자리로 형식 지정
부동 소수점을 지정된 소수 자릿수로 형식 지정하려면 문자열을 사용하는 것이 좋습니다. BigDecimal 대신 format() 메소드:
<code class="java">import java.lang.Math; public static float Redondear(float pNumero, int pCantidadDecimales) { //Round the float value and convert it to a string with specified decimal places String roundedValue = String.format("%.2f", pNumero); //Parse the string back to a float to maintain float precision return Float.parseFloat(roundedValue); }</code>
예:
<code class="java">float originalValue = 625.3f; int decimalPlaces = 2; float roundedValue = Redondear(originalValue, decimalPlaces); System.out.println("Rounded Value: " + roundedValue); // Output: 625.30</code>
문서:
위 내용은 Java에서 소수점 이하 N 자리로 부동 소수점 형식을 지정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!