日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

c语言 函数的参数传递示例_C ++中带有示例的nearint()函数

發布時間:2025/3/11 编程问答 12 豆豆
生活随笔 收集整理的這篇文章主要介紹了 c语言 函数的参数传递示例_C ++中带有示例的nearint()函数 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

c語言 函數的參數傳遞示例

C ++附近的int()函數 (C++ nearbyint() function)

nearbyint() function is a library function of cmath header, it is used to round the given value to an integral value based on the specified direction by fegetround() function. It accepts a value and returns the rounded integral value.

nearint()函數是cmath標頭的庫函數,用于通過fegetround()函數根據指定方向將給定值舍入為整數值。 它接受一個值并返回四舍五入的整數值。

Syntax of nearbyint() function:

附近的int()函數的語法:

C++11:

C ++ 11:

double nearbyint (double x);float nearbyint (float x); long double nearbyint (long double x);double nearbyint (T x);

Parameter(s):

參數:

  • x – represents the value to round.

    x –表示要取整的值。

Return value:

返回值:

It returns value rounded to nearby integral.

它返回四舍五入到附近整數的值。

Example:

例:

Input:double x = 123.4;Function call:nearbyint(x);Output:123Input:double x = 123.5;Function call:nearbyint(x);Output:124

C ++代碼來演示Nearestint()函數的示例 (C++ code to demonstrate the example of nearbyint() function)

// C++ code to demonstrate the example of // nearbyint() function#include <iostream> #include <cmath> #include <fenv.h> // for fegetround() using namespace std;int main() {double x = 0.0;cout << "Specified rounding is: ";switch (fegetround()) {case FE_DOWNWARD:cout << "Downward" << endl;break;case FE_TONEAREST:cout << "To-nearest" << endl;break;case FE_TOWARDZERO:cout << "Toward-zero" << endl;break;case FE_UPWARD:cout << "Upward" << endl;break;default:cout << "Unknown" << endl;}x = 123.4;cout << "nearbyint(" << x << "): " << nearbyint(x) << endl;x = 123.5;cout << "nearbyint(" << x << "): " << nearbyint(x) << endl;x = 123.6;cout << "nearbyint(" << x << "): " << nearbyint(x) << endl;x = -123.4;cout << "nearbyint(" << x << "): " << nearbyint(x) << endl;x = -123.5;cout << "nearbyint(" << x << "): " << nearbyint(x) << endl;x = -123.6;cout << "nearbyint(" << x << "): " << nearbyint(x) << endl;return 0; }

Output

輸出量

Specified rounding is: To-nearest nearbyint(123.4): 123 nearbyint(123.5): 124 nearbyint(123.6): 124 nearbyint(-123.4): -123 nearbyint(-123.5): -124 nearbyint(-123.6): -124

Reference: C++ nearbyint() function

參考: C ++附近的int()函數

翻譯自: https://www.includehelp.com/cpp-tutorial/nearbyint-function-with-example.aspx

c語言 函數的參數傳遞示例

總結

以上是生活随笔為你收集整理的c语言 函数的参数传递示例_C ++中带有示例的nearint()函数的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。