floor、floorf、floorl
計算值的最低限度值。
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
);
參數
- x
浮點值
傳回值
floor 函式會傳回表示小於或等於 x的最大的整數值的浮點值。 不會回傳錯誤。
輸入 |
SEH 例外狀況 |
Matherr 例外狀況 |
---|---|---|
± QNAN,IND |
無 |
_DOMAIN |
floor 會使用 Streaming SIMD Extensions 2(SSE2) 的實作。 如需有關使用 SSE2 實作的詳細資訊和限制,請參閱 _set_SSE2_enable。
備註
C++ 允許多載,因此您可以呼叫會接受並傳回 float 與 long double 值的 floor 多載。 在 C 程式,floor 一律接受並傳回 double。
需求
Function |
必要的標頭 |
---|---|
floor, floorf, floorl |
<math.h> |
如需其他相容性資訊,請參閱 相容性。
範例
// 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 );
}