getFloorInteger function

int getFloorInteger(
  1. double real
)

Implementation

int getFloorInteger(
    double real
    )
{
    return real.floor();
}