Draw a flowchart to solve this problem.A program to ask user to input 100 marks.Calculate the average marks.Then,display the average value.

1 answer

sum=0
for i=1..100
read m(i)
sum += m(i)
end for
avg = sum/100
print "average: ", avg