Computer Science, asked by sharmajogendra93, 1 month ago

Write a qbasic program to find the middle from three supplied number.​

Answers

Answered by BrainlyProgrammer
3

Answer:

CLS

INPUT A

INPUT B

INPUT C

MID= (A+B+C)/3

PRINT "MIDDLE:- ";MID

END

Similar questions