📜  C++ STL-math.trunc()函数

📅  最后修改于: 2020-10-18 13:25:18             🧑  作者: Mango

C++ STL 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 
#include
using namespace std;
int main()
{
    float x=8.8;
    std::cout << "The value of x is :" <

输出:

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

例子2

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

#include 
#include
using namespace std;
int main()
{
    double x=-3.9;
    std::cout << "The value of x is :" <

输出:

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