floor, floorf
計算下限值。
double floor(
double x
);
float floor(
float x
); // C++ only
long double floor(
long double x
); // C++ only
float floorf(
float x
);
參數
- x
浮點值。
傳回值
floor函式會傳回浮點值,表示是否小於或等於最大整數x。 沒有任何錯誤傳回。
輸入 |
SEH 例外狀況 |
Matherr 例外狀況 |
---|---|---|
± QNAN 尋找 |
無 |
_DOMAIN |
floor已使用資料流 SIMD 延伸模組 2 (SSE2) 的實作。 請參閱 _set_SSE2_enable 的資訊,並使用 SSE2 實作的限制。
備註
C + + 允許多載化,因此您可以呼叫多載的floor。 在某 c 程式, floor一直使用,然後傳回 double。
需求
Function |
所需的標頭 |
---|---|
floor, floorf |
<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 );
}