Asked by Kevin

Develop a program pseudo code to read the names and scores for ten students,it should calculate and report the average

Answers

Answered by oobleck
sum=0
for i=1..10
read score
sum += score
end for
avg = sum/10
print avg
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions