Round()

Syntax

Result.f = Round(Number.f, Mode)
Description
Round the specified float number according to the given mode. If Mode = 0, it round down the number (keep only the integer part). If Mode = 1, it round up the Number

Example
Result.f = Round(11.5, 0) ; Will be 11
Result.f = Round(11.5, 1) ; Will be 12

Supported OS

Windows, Linux, MacOS X

<- Pow() - Math Index - Sin() ->