write a program to input three unequal number and display the greatest number
Answers
Answered by
1
Explanation:
a = 7, b = 2, c = 8.
second = max(min(7,2), min(max(7,2),8)) = max(2, min(7,8)) = max(2, 7) = 7
Similar questions