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 の例外 |
---|---|---|
± QNANIND |
[none] |
_DOMAIN |
floor にストリーミング SIMD 拡張 2 (SSE2) をストリームに使用する実装されています。SSE2 実装の詳細と使用に関する制限事項については _set_SSE2_enable を参照してください。
解説
C++ ではオーバーロードが可能であるため、floor のオーバーロードを呼び出すことができます。C. のプログラムではfloor は受け取り常にを返します。
必要条件
Function |
必須ヘッダー |
---|---|
floor, floorf |
<math.h> |
互換性の詳細については、「C ランタイム ライブラリ」の「互換性」を参照してください。
使用例
// 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 );
}