Java: Round a float number to specified decimals
Java Math Exercises: Exercise-4 with Solution
Write a Java program to round a float number to specified decimals.
Sample Solution:
Java Code:
import java.lang.*;
import java.math.BigDecimal;
public class Example4 {
public static void main(String[] args) {
float x = 451.3256412f;
BigDecimal result;
int decimal_place = 4;
BigDecimal bd_num = new BigDecimal(Float.toString(x));
bd_num = bd_num.setScale(decimal_place, BigDecimal.ROUND_HALF_UP);
System.out.printf("Original number: %.7f\n",x);
System.out.println("Rounded upto 4 decimal: "+bd_num);
}
}
Sample Output:
Original number: 451.3256531 Rounded upto 4 decimal: 451.3257
Flowchart:
Java Code Editor:
Contribute your code and comments through Disqus.
Previous: Write a Java program to test if a double number is an integer.
Next: Write a Java program to count the absolute distinct value in an array.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/java-exercises/math/java-math-exercise-4.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics