tail head cat sleep
QR code linking to this page

manページ  — FLOOR

名称

floor, floorf – x 以下の最も大きな整数値への切捨て

内容

ライブラリ

Math Library (libm, -lm)

書式

#include <math.h>

double
floor(double x);

float
floorf(float x);

解説

floor() および floorf() 関数は、 浮動小数点として表現される x 以下の最も大きな整数値を返します。

関連項目

abs(3), ceil(3), fabs(3), ieee(3), math(3), rint(3)

規格

floor() 関数は、 ISO/IEC 9899:1990 ("ISO C90") に適合しています。

FLOOR (3) March 10, 1994

tail head cat sleep
QR code linking to this page


このマニュアルページサービスについてのご意見は Ben Bullock にお知らせください。 Privacy policy.

C is a language that combines all the elegance and power of assembly language with all the readability and maintainability of assembly language.