This language bar is your friend. Select your favorite languages!
Select your favorite languages :
- Or search :
Idiom #81 Round floating point number to integer
Declare the integer y and initialize it with the rounded value of the floating point number x .
Ties (when the fractional part of x is exactly .5) must be rounded up (to positive infinity).
- Ada
- C
- Clojure
- C++
- C#
- D
- Dart
- Elixir
- Fortran
- Go
- Haskell
- JS
- Java
- Java
- Lisp
- Lua
- Lua
- PHP
- Pascal
- Perl
- Python
- Python
- Ruby
- Rust
- Scheme
y = Kernel.round x
Kernel.round tales integers or floats but always returns an integer, unlike Float.round which always returns a float
import static java.lang.Integer.parseInt;
import static java.math.RoundingMode.HALF_UP;
import static java.text.NumberFormat.getNumberInstance;
NumberFormat f = getNumberInstance();
f.setRoundingMode(HALF_UP);
f.setMaximumFractionDigits(0);
int y = parseInt(f.format(x));
function round(float)
local int, part = math.modf(float)
if float == math.abs(float) and part >= .5 then return int+1 -- positive float
elseif part <= -.5 then return int-1 -- negative float
end
return int
end
math.floor(x) will return the biggest integer below x
c = Context(rounding=ROUND_HALF_UP)
y = round(Decimal(x, c))
(define y (round x))
Similar functions:
- round: compat with IEEE floating point rounding rules; rounds to even when halfway b/w two integers
- floor: largest int not larger than x
- ceiling: smallest int not smaller than x
- truncate: integer closest to x whose absolute value is not larger than the absolute value of x
- round: compat with IEEE floating point rounding rules; rounds to even when halfway b/w two integers
- floor: largest int not larger than x
- ceiling: smallest int not smaller than x
- truncate: integer closest to x whose absolute value is not larger than the absolute value of x