4 Write an algorithm, using a flowchart, which:
• inputs 100 numbers
•finds the average of the input numbers
•outputs the average
Answers
Answered by
0
Answer:
QBASIC
Explanation:
input "enter a number: ", a,
x99
avg = a + ... / 100
print "Average: ", avg
Similar questions