To convert an integer to floating point, use the function float.
Function:floatnumber
This returns number converted to floating point.
If number is already a floating point number, float returns
it unchanged.
There are four functions to convert floating point numbers to integers;
they differ in how they round. These functions accept integer arguments
also, and return such arguments unchanged.
Function:truncatenumber
This returns number, converted to an integer by rounding towards
zero.
This returns number, converted to an integer by rounding downward
(towards negative infinity).
If divisor is specified, floor divides number by
divisor and then converts to an integer; this uses the kind of
division operation that corresponds to mod, rounding downward.
An arith-error results if divisor is 0.
This returns number, converted to an integer by rounding towards the
nearest integer. Rounding a value equidistant between two integers
may choose the integer closer to zero, or it may prefer an even integer,
depending on your machine.
Please take a moment to fill out
this visitor survey You can help support this site by
visiting the advertisers that sponsor it! (only once each, though)