姿势共享,有节操无门槛参与的创客百科,创客动力之源 \ (^_^) /
树莓派
Arduino
MicroPython
micro:bit
创客笔记 (服务详情)
百科帮助
相关链接
double c = fmax(-3.5, 4.3); // Sets c to 4.3 double d = fmax(2.7172, 2.40); // Sets d to 2.7172
fmax() 返回x和y间的较大的一个.如果其中一个参数是 NaN (不是数字), 就返回另一个参数. 如果两个参数都是 NaN, 返回NaN.
fmax(x, y)
x double, float or int y double, float or int
返回 double