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

歡迎訪問 生活随笔!

生活随笔

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

编程问答

fmax()函数以及C ++中的示例

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

C ++ fmax()函數 (C++ fmax() function)

fmax() function is a library function of cmath header, it is used to find the maximum value of the given numbers, it accepts two number and returns the larger one.

fmax()函數是cmath標頭的庫函數,用于查找給定數字的最大值,它接受兩個數字并返回較大的一個。

Syntax of fmax() function:

fmax()函數的語法:

fmax(x, y);

Parameter(s): x, y – are the numbers to be used to find the larger value.

參數: x,y –是用于查找較大值的數字。

Return value: double – it returns double value that is the larger value of x and y.

返回值: double-返回x和y中的較大值的double值。

Example:

例:

Input:float x = 20;float y = 10;Function call:fmax(x,y);Output:20

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

// C++ code to demonstrate the example of // fmax() function #include <iostream> #include <cmath> using namespace std;// main() section int main() {float x;float y;float result;//input the numberscout<<"Enter first number : ";cin>>x;cout<<"Enter second number: ";cin>>y;//finding the maximum numberresult = fmax(x,y);cout<<"fmax("<<x<<","<<y<<"): "<<result;cout<<endl;return 0; }

Output

輸出量

First run: Enter first number : 10 Enter second number: -20 fmax(10,-20): 10 Second run: Enter first number : 10 Enter second number: 20 fmax(10,20): 20Third run: Enter first number : 123.90 Enter second number: 121.88 fmax(123.9,121.88): 123.9 Fourth run: Enter first number : -123.45 Enter second number: -121.56 fmax(-123.45,-121.56): -121.56

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

創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎

總結

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

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