std::floor

From cppreference.com
< cpp‎ | numeric‎ | math
 
 
 
Common mathematical functions
Functions
Basic operations
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Exponential functions
(C++11)
(C++11)
(C++11)
(C++11)
Power functions
(C++11)
(C++11)
Trigonometric and hyperbolic functions
(C++11)
(C++11)
(C++11)
Error and gamma functions
(C++11)
(C++11)
(C++11)
(C++11)
Nearest integer floating point operations
floor
(C++11)(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)(C++11)
Floating point manipulation functions
(C++11)(C++11)
(C++11)
(C++11)
(C++11)(C++11)
(C++11)
Classification/Comparison
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
(C++11)
Macro constants
(C++11)(C++11)(C++11)(C++11)(C++11)
 
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
math-floor.svg
Argument

[edit] Notes

The integer value can be always represented by the given floating point type.

[edit] Example

#include <cmath>
#include <iostream>
 
int main()
{
    std::cout << std::fixed;
    std::cout << std::floor(12.0) << '\n';
    std::cout << std::floor(12.1) << '\n';
    std::cout << std::floor(12.5) << '\n';
    std::cout << std::floor(12.9) << '\n';
    std::cout << std::floor(13.0) << '\n';
}

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)