Computer Science, asked by VinayaBR, 1 month ago

algorithm and flowchart
a) To find it average age of a group of
10 players​

Answers

Answered by vikashpatnaik2009
2

Answer:

Start

Input ages of 10 players in array A[]

Sum = 0

I = 0

Repeat steps 6 & 7 while (I < 10)

Sum = Sum + A[I]

I = I + 1

Avg = Sum / 10

Print Avg

Stop

Similar questions