#include <cmath>
#include
double floor (double x)
Liefert die größte Ganzzahl $n\leq x$.
x
Rückgabewert: ganzzahlige Unterschranke.
ceil(), nearbyint(), rint(), round(), trunc().
#include <cmath> #include <iostream> int main() { double x = 12.345; std::cout << "ganzzahlige Begrenzungen: " << std::floor(x) << " <= " << x << " <= " << std::ceil(x) << '\n'; }