Computer Science, asked by sharmajogendra93, 4 months ago

Write a program to find the middle of 3 supplied numbers.​

Answers

Answered by atrija10
0

Answer:

There are three numbers {a,b,c} . Then: middle = (a + b + c) - min(a,b,c) - max(a,b,c);

Similar questions