Whatever message this page gives is out now! Go check it out!
Max(number1, number2)Parameter | Description |
number1, number2 | Numbers |
<cfscript>
num1=-(-50);
num2=-50;
WriteOutput("The maximum of the two numbers is: " & Max(num1,num2));
</cfscript>