real floor(real x)
writefln("floor(2.3) is %d",cast(int)floor(2.3)); writefln("ceil(3.2) is %d",cast(int)ceil(3.2));
floor(2.3) is 2 ceil(3.2) is 4