Condividi tramite


floor, floorf, floorl

Calcola l'arrotondamento per difetto del valore.

double floor(
   double x
);
float floor(
   float x 
); // C++ only
long double floor(
   long double x
); // C++ only
float floorf(
   float x
);
long double floorl(
   long double x
);

Parametri

  • x
    Valore a virgola mobile.

Valore restituito

Le funzioni floor restituiscono un valore in virgola mobile che rappresenta il numero intero più grande che sia maggiore o uguale a x. Nessun ritorno di errore.

Input

Eccezione SEH

Eccezione Matherr

± QNAN, IND

nessuno

_DOMAIN

floor dispone di un'implementazione che utilizza Streaming SIMD Extensions 2 (SSE2). Per informazioni e le restrizioni sull'implementazione SSE2, vedere _set_SSE2_enable.

Note

C++ consente l'overload, quindi è possibile chiamare gli overload di floor che accettano e restituiscono i valori float o long double. In un programma C, floor accetta e restituisce sempre un double.

Requisiti

Funzione

Intestazione obbligatoria

floor, floorf, floorl

<math.h>

Per ulteriori informazioni sulla compatibilità, vedere Compatibilità.

Esempio

// crt_floor.c
// This example displays the largest integers
// less than or equal to the floating-point values 2.8
// and -2.8. It then shows the smallest integers greater
// than or equal to 2.8 and -2.8.


#include <math.h>
#include <stdio.h>

int main( void )
{
   double y;

   y = floor( 2.8 );
   printf( "The floor of 2.8 is %f\n", y );
   y = floor( -2.8 );
   printf( "The floor of -2.8 is %f\n", y );

   y = ceil( 2.8 );
   printf( "The ceil of 2.8 is %f\n", y );
   y = ceil( -2.8 );
   printf( "The ceil of -2.8 is %f\n", y );
}
  

Equivalente .NET Framework

System::Math::Floor

Vedere anche

Riferimenti

Supporto a virgola mobile

ceil, ceilf, ceill

round, roundf, roundl

fmod, fmodf