std::floor
From cppreference.com
Defined in header
<cmath>
|
||
float floor( float arg );
|
||
double floor( double arg );
|
||
long double floor( long double arg );
|
||
double floor( Integral arg );
|
(since C++11) | |
Computes nearest integer not greater than arg
.
Contents |
[edit] Parameters
arg | - | floating point value |
[edit] Return value
Nearest integer not greater than arg
Return value
Argument
[edit] Notes
The integer value can be always represented by the given floating point type.
[edit] Example
Run this code
Output:
12.000000 12.000000 12.000000 12.000000 13.000000
[edit] See also
nearest integer not less than the given value (function) |
|
(C++11)
|
nearest integer not greater in magnitude than the given value (function) |
(C++11)(C++11)(C++11)
|
nearest integer, rounding away from zero in halfway cases (function) |