write a pseudo code algorithm that will accept the marks in a test for a group of 25 students then calculate and display the average mark

3 answers

s=0
for (i=1 to 25) {read x; s = s+x}
a = s/25
display a
23
What is a pseudo code that will calculate the average from 25 exam scores?