Given is an array of three numeric values and I\'d like to know the middle value of the three.
The question is, what is the fastest way of finding the midd
largest=(a>b)&&(a>c)?a:(b>c?b:c); smallest=(a