Difference between revisions of "Max"

From Kolmafia
Jump to navigation Jump to search
imported>Eliteofdelete
imported>Eliteofdelete
(Wrong spot, whoops)
 
Line 28: Line 28:
 
function_description=Compares two numbers, and returns the higher of the two. Note that it is possible to mix an int and float type in the parameters, in which case the int parameter will be transparently converted to a float, and the value returned will be of float type.|
 
function_description=Compares two numbers, and returns the higher of the two. Note that it is possible to mix an int and float type in the parameters, in which case the int parameter will be transparently converted to a float, and the value returned will be of float type.|
  
code1={{CodeSample|
+
needscode=yes|
title=Code Samples|
 
description=Simple example using max to determine how many twinkly wads you can currently use based on the amount on hand and your spleen limit.|
 
code=
 
<syntaxhighlight>
 
int amount = max(item_amount($item[twinkly wad]), spleen_limit() - my_spleen_use());
 
print("You can currently use "+amount+" twinkly wads.", "blue");
 
</syntaxhighlight>|
 
 
 
}}|
 
  
 
see_also={{SeeAlso|min}}|
 
see_also={{SeeAlso|min}}|

Latest revision as of 22:21, 21 January 2015

needs(code_samples);

Function Syntax

int max(int a ,int b )

float max(float a ,float b )

  • a is the first number to compare
  • b is the second number to compare

Compares two numbers, and returns the higher of the two. Note that it is possible to mix an int and float type in the parameters, in which case the int parameter will be transparently converted to a float, and the value returned will be of float type.

See Also

min()