Saved Bookmarks
| 1. |
Design the algorithm and flowchart to calculate the average from 25 exams scores. |
|
Answer» Answer: MARK MY ANSWER AS BRAINLIEST PLEASE NOTE that X is one of the 25 exam scores, and N is the total number of exam scores. Also you COULD replace “SUM = SUM + X” with “ADD X TO SUM” and also “I = I + 1” with “ADD 1 to I” and also “IS I > N” with “IS I GREATER THAN N” whichever you think is most appropriate. What I did is closer to what a computer program would look like. |
|