Asked by Anonymous
Draw a flowchart that will accept the physics score by 30 students calculate and print the average mark
Answers
Answered by
oobleck
sum = 0
for i=1..30
read score
sum += score
next i
avg = sum/30
print avg
I assume you can construct the flowchart for a loop
for i=1..30
read score
sum += score
next i
avg = sum/30
print avg
I assume you can construct the flowchart for a loop
There are no AI answers yet. The ability to request AI answers is coming soon!
Submit Your Answer
We prioritize human answers over AI answers.
If you are human, and you can answer this question, please submit your answer.