-
-
Notifications
You must be signed in to change notification settings - Fork 19
max
CryoEagle edited this page Dec 29, 2018
·
6 revisions
This function returns highest value from array.
choose(values[])| Argument | Description |
|---|---|
int values[] |
List of numbers to search in for highest value |
Returns: Real
This function will find highest value from array.
int [] values = { 5, 33, 40, 99, 10};
var max = max(values); //return 99This code will return highest value from array int [] values to var max, of course it return 99.
Back to number_functions