c语言 函数的参数传递示例_llround()函数以及C ++中的示例
c語(yǔ)言 函數(shù)的參數(shù)傳遞示例
C ++ llround()函數(shù) (C++ llround() function)
llround() function is a library function of cmath header, it is used to round the given value and casts to a long long integer, it accepts a number and returns the integer (long long int) value that is nearest to the number (with halfway cases).
llround()函數(shù)是cmath標(biāo)頭的庫(kù)函數(shù),用于舍入給定值并將其轉(zhuǎn)換為長(zhǎng)整型整數(shù),它接受一個(gè)數(shù)字并返回最接近該數(shù)字的整數(shù)(長(zhǎng)整型int)值(帶有中途案例)。
Syntax of llround() function:
llround()函數(shù)的語(yǔ)法:
llround(x);Parameter(s): x – is the number to round nearest to zero with halfway cases.
參數(shù): x –是中途取整的數(shù)字,最接近零。
Return value: long long int – it returns long long int type value that is the rounded value of the number x.
返回值: long long int –返回long long int類型值,該值是數(shù)字x的舍入值。
Example:
例:
Input:float x = 2.3; Function call:llround(x); Output:2Input:float x = 2.8;Function call:llround(x); Output:3C ++代碼演示llround()函數(shù)的示例 (C++ code to demonstrate the example of llround() function)
// C++ code to demonstrate the example of // llround() function#include <iostream> #include <cmath> using namespace std;// main() section int main() {float x;x = 15.3;cout<<"llround("<<x<<"): "<<llround(x)<<endl;x = 15.5;cout<<"llround("<<x<<"): "<<llround(x)<<endl;x = 15.8;cout<<"llround("<<x<<"): "<<llround(x)<<endl;x = -15.3;cout<<"llround("<<x<<"): "<<llround(x)<<endl;x = -15.5;cout<<"llround("<<x<<"): "<<llround(x)<<endl;x = -15.8;cout<<"llround("<<x<<"): "<<llround(x)<<endl; return 0; }Output
輸出量
llround(15.3): 15 llround(15.5): 16 llround(15.8): 16 llround(-15.3): -15 llround(-15.5): -16 llround(-15.8): -16翻譯自: https://www.includehelp.com/cpp-tutorial/llround-function-with-example.aspx
c語(yǔ)言 函數(shù)的參數(shù)傳遞示例
總結(jié)
以上是生活随笔為你收集整理的c语言 函数的参数传递示例_llround()函数以及C ++中的示例的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: java的equals方法_Java L
- 下一篇: java 根据类名示例化类_Java M