rint, lrint, llrint
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 <math.h>
|
||
int rintf( float arg ); |
||
int rint( double arg ); |
||
int rintl( long double arg ); |
||
long lrintf( float arg ); |
||
long lrint( double arg ); |
||
long lrintl( long double arg ); |
||
long long llrintf( float arg ); |
||
long long llrint( double arg ); |
||
long long llrintl( long double arg ); |
||
Rundet die Floating-Point-Argument
arg
auf einen ganzzahligen Wert in Floating-Point-Format, mit dem aktuellen Rundung Modus. Wenn das Ergebnis unterscheidet sich von arg
(dh arg
war kein ganzzahliger Wert schon), wird die Gleitkomma-Ausnahme FE_INEXACT angehoben .Original:
Rounds the floating-point argument
arg
to an integer value in floating-point format, using the current rounding mode. If the result differs from arg
(i.e., arg
was not an integer value already), the floating-point exception FE_INEXACT is raised.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
Das ganzzahlige Ergebnis der Rundung
arg
Original:
The integer result of rounding
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.
[Bearbeiten] Notes
Der einzige Unterschied zwischen nearbyint und rint ist, dass rint kann die FE_INEXACT Gleitkomma-Ausnahme zu erhöhen, während nearbyint wirft es nie .
Original:
The only difference between nearbyint and rint is that rint may raise the FE_INEXACT floating-point exception, while nearbyint never raises it.
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.