Use Math.round()
to round 1.5 to the nearest integer:
long result = Math.round(1.5); // Output: 2
Key takeaways:
The
Math.round()
method rounds a number to the nearest integer by adding 0.5 and flooring the result.To round numbers to a specific decimal place, multiply the number by
, apply Math.round()
, and then divide by the same factor.Round up if the decimal part is 0.5 or greater, and round down if it's less than 0.5.
Math.round()
handles edge cases likeNaN
and extreme integer values (e.g.,Integer.MAX_VALUE
).Rounding is widely used in financial calculations, scientific data, and simplifying values in various domains.
Rounding GPS coordinates to a specific number of decimal places is helpful for presenting location data in a more human-readable format, particularly when working with map applications. For instance, a GPS coordinate of
In this Answer, we will learn how to round off a number using the Java Math.round()
method.
Math.round()
methodThe Math.round()
method in Java is used to round a number to its closest integer. This is done by adding to the number, taking the floor of the result, and casting the result to an integer data type.
The following is the syntax of Math.round()
method:
Here a
is the floating-point number (or type double
) to be rounded. It returns the closest long
value to the argument. The return value is rounded to the nearest integer.
Some of the edge cases of the Math.round()
method are:
NaN
(not a number), then the function will return .Integer.MIN_VALUE
, then the function returns Integer.MIN_VALUE
.Integer.MAX_VALUE
, then the function returns Integer.MAX_VALUE
.round()
functionWe take a number 74.65
and pass it to the round()
function. The output will be a nearest integer 75
.
import java.lang.Math; // Needed to use Math.round()class Program {public static void main( String args[] ) {double num1 = 74.65;System.out.println(Math.round(num1));}}
We pass a negative number -4.3
to the method and it returns -4
.
import java.lang.Math; // Needed to use Math.round()class Program {public static void main( String args[] ) {double num1 = -4.3;System.out.println(Math.round(num1));}}
If we want to round a decimal number up to specific decimal places, in this case 2 decimal places we multiply it by 100.0
, pass it to the Math.round()
method and then divide it by 100.0
.
Note: To round a number to a specific decimal place, multiply it by
, round it using Math.round()
, and then divide by, again.
import java.lang.Math; // Needed to use Math.round()class Program {public static void main( String args[] ) {double num1 = -13.56934;System.out.println(Math.round(num1 * 100.0) / 100.0); // Round to two decimal places}}
Kickstart your programming journey with "Learn Java." Master essential concepts like input/output methods, user-defined methods, and basic data types. Build sequential, selective, and iterative programs through engaging hands-on projects.
In conclusion, the Math.round()
method in Java is a simple but powerful tool for rounding floating-point numbers to the nearest integer. It has various applications in financial calculations, scientific measurements, and user interfaces. By understanding its syntax and functionality, we can ensure that our program handles rounding efficiently and accurately.
Haven’t found what you were looking for? Contact Us
Free Resources