C++ cmath fmin() 函数
例子
从不同对数字中返回最小值
cout << fmin(2.0, 0.25);
cout << fmin(31.2f, 18.0f);
cout << fmin(14, 22);
cout << fmin(96, 2048);
自己试试 »
定义和用法
The fmin()
函数从一对数字中返回具有最小值的数字。
The fmin()
函数在 <cmath>
头文件中定义。
提示:使用 fmax() 函数返回具有最大值的数字。
语法
以下之一
fmin(double x, double y);
fmin(float x, float y);
参数值
参数 | 描述 |
---|---|
x | 必需。指定要比较的值。 如果这是一个整数类型,它将被视为 double 。 |
y | 必需。指定要比较的值。 如果这是一个整数类型,它将被视为 double 。 |
技术细节
返回值 | A float value (if all the arguments are float) or double value (in any other case) representing the lowest of two numbers. |
---|