Floor
From Mesham
Jump to navigationJump to searchOverview
This floor(d) function will find the largest integer less than or equal to d.
- Pass: A double to find floor of
- Returns: An integer representing the floor
Example
#include <maths> var a:=floor(10.5); var y:=floor(a);