note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
max
warning
This function starts with a lowercase letter.
Description
Function used to compare the values.
Name | Description |
---|---|
value1 | Value 1 (a) to compare. |
value2 | Value 2 (b) to compare. |
Returns
The higher value of value1
and value2
If both are equivalent, value1
is returned.
Examples
public OnGameModeInit()
{
new a, b, result;
a = 5;
b = 10;
result = max(a, b);
printf("max(%d, %d) = %d", a, b, result);
// Since b is bigger than a so result will be 10.
return 1;
}
Related Functions
- min: Compare and get the minimum value.