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
相關用法
- C++ transform_inclusive_scan()用法及代碼示例
- C++ complex tanh()用法及代碼示例
- C++ tgamma()用法及代碼示例
- C++ tellg()用法及代碼示例
- C++ tan()用法及代碼示例
- C++ complex tan()用法及代碼示例
- C++ towupper()用法及代碼示例
- C++ towlower()用法及代碼示例
- C++ type_traits::is_null_pointer用法及代碼示例
- C++ typeinfo::bad_cast用法及代碼示例
- C++ typeinfo::bad_typeid用法及代碼示例
- C++ tanh()用法及代碼示例
- C++ towctrans()用法及代碼示例
- C++ unordered_map cbegin用法及代碼示例
- C++ map lower_bound()用法及代碼示例
- C++ list assign()用法及代碼示例
- C++ std::max()用法及代碼示例
- C++ std::string::push_back()用法及代碼示例
- C++ multimap key_comp()用法及代碼示例
- C++ Deque erase()用法及代碼示例
注:本文由純淨天空篩選整理自 trunc() function with example in C++。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。