std::floor
Aus cppreference.com
![]() | This page has been machine-translated from the English version of the wiki using Google Translate. The translation may contain errors and awkward wording. Hover over text to see the original version. You can help to fix errors and improve the translation. For instructions click here. |
definiert in Header <cmath> | ||
float floor(float arg ); | ||
double floor(double arg ); | ||
longdouble floor(longdouble arg ); | ||
double floor( Integral arg ); | (seit C++11) | |
Berechnet nächste ganze Zahl nicht größer als
arg
. Original:
Computes nearest integer not greater than
arg
. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Inhaltsverzeichnis |
[Bearbeiten]Parameter
arg | - | Floating-Point-Wert Original: floating point value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[Bearbeiten]Rückgabewert
Nächste ganze Zahl nicht größer als
arg
Original:
Nearest integer not greater than
arg
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[[Image:
Rückgabewert
|200x200px]]Original:
{{{2}}}
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Argument
[Bearbeiten]Notes
Die Integer-Wert kann immer durch die gegebene Fließkomma-Typ dargestellt werden .
Original:
The integer value can be always represented by the given floating point type.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
[Bearbeiten]Beispiel
Output:
12.000000 12.000000 12.000000 12.000000 13.000000
[Bearbeiten]Siehe auch
nächste ganze Zahl nicht kleiner als der gegebene Wert Original: nearest integer not less than the given value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) | |
(C++11) | nächste Ganzzahl nicht betragsmäßig größer als der gegebene Wert Original: nearest integer not greater in magnitude than the given value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) |
(C++11) (C++11) (C++11) | nächste ganze Zahl, Rundung von Null weg in halbwegs Fällen Original: nearest integer, rounding away from zero in halfway cases The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (Funktion) |