Ask a New Question
Search
Develop a program pseudo code to read the names and scores for ten students,it should calculate and report the average
1 answer
sum=0
for i=1..10
read score
sum += score
end for
avg = sum/10
print avg