max() is a scalar arithmertic function that evaluates two expressions and returns the larger of two double
s.
Signature
max(double exp, double exp)
- double exp : expression returning
double
Returns
double
Examples
Find the larger of 4.65 and 8.91.
max(4.65, 8.91)