floor、floorf、floorl
计算值的floor值
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++ 允许重载,因此您可以调用 floor 的重载,该重载采用和返回 float和long double 值。 在 C 程序中,floor 始终采用并返回 double。
要求
功能 |
必需的标头 |
---|---|
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 );
}