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


C++ Math trunc()用法及代码示例


该函数将给定值向零舍入,并返回其幅度不大于给定值的最接近的整数值。

例如:

trunc(3.8) = 3;

用法

假设一个数字是 'x'。语法是:

return_type trunc(data_type x);

注意:return_type 可以是 float、double 或 long double。

参数

x: 可以是 float、double 或 long double 的值。

返回值

它返回 x 的舍入值。

例子1

当 x 的值为正时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    float x=8.8;
    std::cout << "The value of x is:" <<x<< std::endl;
    std::cout << "Truncated value of x is:" <<trunc(x)<< std::endl;
    return 0;
}

输出:

The value of x is:8.8
Truncated value of x is:8

例子2

当 x 的值为负时,让我们看一个简单的例子。

#include <iostream>
#include<math.h>
using namespace std;
int main()
{
    double x=-3.9;
    std::cout << "The value of x is:" <<x<< std::endl;
    std::cout << "Truncated value of x is:" <<trunc(x)<< std::endl;
    return 0;
}

输出:

The value of x is:-3.9
Truncated value of x is:-3





相关用法


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