Returns the integer numeric value closest from above.
Syntax:
1 |
ceil(var,digits) |
“digits” is optional. It is the number of digits after decimal point.
Returns the integer numeric value closest from above.
Syntax:
1 |
ceil(var,digits) |
“digits” is optional. It is the number of digits after decimal point.
I think the description is incorrect or can be misunderstood. Ceil(1.3) returns 2, and so it is the integer value closest from below, or the closest integer above 1.3.
The same for floor : Floor(1.3) returns 1, and so it is the closest integer seen from above, or the closest integer below 1.3.
Bonjour. Is there a fuction to obtain the remainder of a division?
MOD : https://www.prorealcode.com/documentation/mod/