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


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


C++ 中的trunc() 函数将参数向零舍入,并返回幅度不大于参数的最接近的整数值。

C++ 中的trunc() 函数将参数向零舍入,并返回幅度不大于参数的最接近的整数值。

trunc() 原型 [从 C++ 11 标准开始]

double trunc(double x);
float trunc(float x);
long double trunc(long double x);
double trunc(T x); // For integral types

trunc() 函数采用单个参数并返回 double、float 或 long double 类型的值。该函数在<cmath> 头文件中定义。

参数:

trunc() 函数采用单个参数,其 trunc 值将被计算。

返回:

trunc() 函数将 x 向零舍入并返回幅度不大于 x 的最接近的整数值。

简单地说,trunc() 函数会截断小数点后的值并仅返回整数部分。

示例 1:trunc() 如何在 C++ 中工作?

#include <iostream>
#include <cmath>
 
using namespace std;
 
int main()
{
    double x = 10.25, result;
    result = trunc(x);
    cout << "trunc(" << x << ") = " << result << endl;
 
    x = -34.251;
    result = trunc(x);
    cout << "trunc(" << x << ") = " << result << endl;
 
    return 0;
}

运行程序时,输出将是:

trunc(10.25) = 10
trunc(-34.251) = -34

示例 2:用于整数类型的 trunc() 函数

#include <iostream>
#include <cmath>

using namespace std;

int main()
{
    int x = 15;
    double result;
    result = trunc(x);
    cout << "trunc(" << x << ") = " << result << endl;

    return 0;
}

运行程序时,输出将是:

trunc(15) = 15

对于整数值,应用 trunc 函数会返回与结果相同的值。所以在实践中它并不常用于整数值。

相关用法


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