71.5k views
0 votes
3: Write an algorithm to calculate the average from 25 exam scores and draw the Flowchart​

User Knuku
by
7.1k points

1 Answer

3 votes

ALGORITHM: Average of 25 Exam Scores

1. SET total = 0

2. FOR i = 1 TO 25

a. INPUT score[i]

b. total = total + score[i]

3. SET average = total / 25

4. OUTPUT average

And here is a flowchart representation of the algorithm:

+----------------+

| Average of 25 |

| Exam Scores |

+----------------+

|

| +------------+

| | SET |

| | total = |

| | 0 |

| +------------+

|

| +------------+

| | FOR i = 1 |

| | TO 25 |

| +------------+

| | +--------+

| | | INPUT |

| | | score[i]|

| | +--------+

| | +--------+

| | | SET |

| | | total =|

| | | total +|

| | | score[i]|

| | +--------+

| +------------+

|

| +------------+

| | SET |

| | average = |

| | total / 25|

| +------------+

|

| +------------+

| | OUTPUT |

| | average |

| +------------+

|

+----------------+

User Jirkamat
by
7.8k points