fmax()函数以及C ++中的示例
生活随笔
收集整理的這篇文章主要介紹了
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:20C ++代碼演示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 ++中的示例的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: DNF领主塔怎么打?
- 下一篇: 关键字驱动测试示例_带有示例的False