Write a program to find the middle of 3 supplied numbers.
Answers
Answered by
0
Answer:
There are three numbers {a,b,c} . Then: middle = (a + b + c) - min(a,b,c) - max(a,b,c);
Similar questions