C++ Math floor()函数
它将给定的值四舍五入为不大于该值的最接近的整数。
例如:
floor(8.2)=8.0;
floor(-8.8)=-9.0;
语法
假设一个数是’x’。语法会是:
double floor(double x);
参数
x :这是最接近的整数的值。
返回值
它返回的是最接近但不大于x的整数的值。
示例1
让我们通过一个简单的示例来看看,考虑一个正值。
#include
#include
using namespace std;
int main()
{
float x=7.8;
std::cout << "Initial value of x is : " << x<
输出:
Initial value of x is : 7.8
Now, the value of x is :7
示例2
让我们通过考虑一个负数来看一个简单的示例。
#include
#include
using namespace std;
int main()
{
float x=-10.2;
std::cout << "Initial value of x is : " << x<
输出:
Initial value of x is : -10.2
Now, the value of x is :-11