當前位置: 首頁>>編程示例 >>用法及示例精選 >>正文


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

C++ trunc() 函數

trunc() 函數是 cmath 頭文件的庫函數,用於將值向零舍入(截斷),它接受一個數字並返回最接近的整數值,該值不大於給定數字的數量級。

trunc() 函數的語法:

    trunc(x);

參數: x– 是向零舍入的數字。

返回值: double– 它返回雙精度值,即數字的舍入(截斷)值x

例:

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

    Input:
    float x = 2.8;
    Function call:
    trunc(x);    
    Output:
    2

C++代碼演示trunc()函數的例子

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

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

// main() section
int main()
{
    float x;
    
    //input the number
    cout<<"Enter a float value:";
    cin>>x;
    
    //rounding doward zero 
    cout<<"trunc("<<x<<"):"<<trunc(x);
    cout<<endl;

    return 0;
}

輸出

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

Second run:
Enter a float value:2.5 
trunc(2.5):2

Third run:
Enter a float value:2.8 
trunc(2.8):2 

Fourth run:
Enter a float value:-2.3
trunc(-2.3):-2 

Fifth run:
Enter a float value:-2.5
trunc(-2.5):-2

Sixth run:
Enter a float value:-2.8
trunc(-2.8):-2 


相關用法


注:本文由純淨天空篩選整理自 trunc() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。