FLT_ROUNDS
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <cfloat>
|
||
#define FLT_ROUNDS /* implementation defined */ |
(desde C++11) | |
Especifica la dirección de redondeo de las operaciones aritméticas de punto flotante. Igual std::float_round_style
Original:
Specifies the rounding direction of floating-point arithmetic operations. Equal to std::float_round_style
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.
Valor
Original: Value The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
-1
|
la dirección de redondeo por defecto no se conoce
Original: the default rounding direction is not known The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
0
|
hacia cero
Original: toward zero The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
1
|
al más cercano
Original: to nearest The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
2
|
hacia el infinito positivo
Original: towards positive infinity The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
3
|
hacia el infinito negativo
Original: towards negative infinity The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| other values | definido por la implantación comportamiento
Original: implementation-defined behavior The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Ver también
Documentación de C para FLT_ROUNDS
|