floor

 

書式
double floor(double x);

機能
x以下の最大の整数値を求める。

戻り値
double型の整数。

ヘッダーファイル
math.h

 

使用例

double x,y;
x = -1.23;
y = floor(x);