FloorSqrt -- (truncated) square root of an integer |
Syntax |
FloorSqrt(N: INT): INT |
Description |
Example |
/**/ FloorSqrt(16); 4 /**/ FloorSqrt(99); 9 -- /**/ FloorSqrt(-1); --> !!! ERROR !!! as expected ERROR: Value must be non-negative FloorSqrt(-1); ^^^^^^^^^ |
See Also |