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 |
| +------------+
|
+----------------+