Objective: – Given three integers, sort them without using if condition.
Appraoch:
- Say 3 integers are, a, b, c.
- Find the maximum of a, b, c using Max() function.
- multiply all integers by -1. Again find Minimum of -a, -b, -c using Max() function.
- Add the Max and Min from above steps and subtract it from (a+b+c). It will give you middle element.
Complete Code:
Output:
Sorted order 1 4 9