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 には、ストリーミング SIMD 拡張機能 (SSE2) を使用して実装されています。 SSE2 実装の使い方の詳細および制約については、「_set_SSE2_enable」を参照してください。
解説
C++ ではオーバーロードが可能であるため、float および long double の値を受け取って返す floor のオーバーロードを呼び出すことができます。 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 );
}