当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C++ floor()用法及代码示例


C++ floor() 函数

floor() 函数是 cmath 头文件的库函数,用于查找给定数字的向上(向下)取整值,它接受一个数字并返回不大于给定数字的最大整数值。

floor() 函数的语法:

    floor(x);

参数: x– 是要四舍五入其值的数字。

返回值: double– 它返回 double 类型的值,它是给定数字的四舍五入值。

例:

    Input:
    float x = 2.3;
    Function call:
    floor(x);
    Output:
    2

    Input:
    float x = 3.8
    Function call:
    floor(x);
    Output:
    3

C++代码演示floor()函数的例子

// C++ code to demonstrate the example of 
// floor() function

#include <iostream>
#include <cmath>
using namespace std;

// main() section
int main()
{
    float x;
    
    //input the number
    cout<<"Enter a float value:";
    cin>>x;
    
    //printing the round up value
    cout<<"floor("<<x<<"):"<<floor(x)<<endl;

    return 0;
}

输出

First run:
Enter a float value:2.3 
floor(2.3):2

Second run:
Enter a float value:3.8 
floor(3.8):3 

Third run:
Enter a float value:-2.3
floor(-2.3):-3

Fourth run:
Enter a float value:-3.8
floor(-3.8):-4 


相关用法


注:本文由纯净天空筛选整理自 floor() function with example in C++。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。