跳转到内容

C++ 编程/代码/标准 C 库/函数/floor

维基教科书,自由的教学读本
语法
#include <cmath>
double floor( double arg );

floor() 函数返回不大于 arg 的最大整数。

// Example for positive numbers
y = 6.04;
x = floor( y );

将导致 x 被设置为 6(双精度浮点数 6.0)。

// Example for negative numbers
y = -6.04;
x = floor( y );

将导致 x 被设置为 -7(双精度浮点数 -7.0)。

相关主题
ceil - fmod
华夏公益教科书