getCeilInteger function

int getCeilInteger(
  1. double real
)

Implementation

int getCeilInteger(
    double real
    )
{
    return real.ceil();
}