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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

c语言 函数的参数传递示例_nexttoward()函数以及C ++中的示例

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

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

C ++ nexttoward()函數 (C++ nexttoward() function)

nexttoward() function is a library function of cmath header, it is used to get the next representable value after the given first number in the direction of given second number, it accepts two numbers (x, y) and returns the next representable value after x in the direction of y.

nexttoward()函數是cmath標頭的庫函數,用于在給定第二個數字的方向上獲取給定第一個數字之后的下一個可表示值,它接受兩個數字( x,y )并返回之后的下一個可表示值x沿y方向。

Note: The nexttoward() function is similar to nextafter() function, but it returns next representable value with a potentially more precise y.

注意: nexttoward()函數與nextafter()函數相似,但是它返回的下一個可表示值的y可能更精確。

Syntax of nexttoward() function:

nexttoward()函數的語法:

nexttoward(x, y);

Parameter(s): x, y – are the numbers to be used to find the next representable value of x in the direction of y.

參數: x,y –是用于在y方向上找到x的下一個可表示值的數字。

Return value: float/double/long double – based on the input type, it returns the next representable value of x.

返回值: float / double / long double-根據輸入類型,它返回x的下一個可表示值。

Example:

例:

Input:float x = 0.0;long double y = 1.0L;Function call:nexttoward(x,y); Output:1.4013e-45

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

// C++ code to demonstrate the example of // nexttoward() function#include <iostream> #include <cmath> using namespace std;// main() section int main() {float x;long double y;x = 0.0;y = 1.0L;cout<<"nexttoward("<<x<<","<<y<<"): "<<nexttoward(x,y);cout<<endl;x = 0.0;y = 1.1L;cout<<"nexttoward("<<x<<","<<y<<"): "<<nexttoward(x,y);cout<<endl; x = 0.0;y = -1.0L;cout<<"nexttoward("<<x<<","<<y<<"): "<<nexttoward(x,y);cout<<endl;x = 0.1;y = 0.1L;cout<<"nexttoward("<<x<<","<<y<<"): "<<nexttoward(x,y);cout<<endl;return 0; }

Output

輸出量

nexttoward(0,1): 1.4013e-45 nexttoward(0,1.1): 1.4013e-45 nexttoward(0,-1): -1.4013e-45 nexttoward(0.1,0.1): 0.1

Reference: C++ nexttoward() function

參考: C ++ nexttoward()函數

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

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

總結

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

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