Skip to main content

max

warning

This function starts with a lowercase letter.

Description

Function used to compare the values.

NameDescription
value1Value 1 (a) to compare.
value2Value 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;
}
  • min: Compare and get the minimum value.