Inhaltsverzeichnis

floor()

#include <cmath>

double floor (double x) 

Liefert die größte Ganzzahl $n\leq x$.

Parameter

x Gleitkommazahl

Ergebnis

Rückgabewert: ganzzahlige Unterschranke.

Siehe auch

ceil(), nearbyint(), rint(), round(), trunc().

Beispiel

floor.cpp
#include <cmath>
#include <iostream>
 
int main()
{
  double x = 12.345;
  std::cout << "ganzzahlige Begrenzungen: "
            << std::floor(x) << " <= " << x  << " <= " << std::ceil(x) << '\n';
}